Add annotator in baggy theme

+ Documentation about annotations
This commit is contained in:
Nicolas Lœuillet
2016-02-23 11:32:48 +01:00
committed by Jeremy Benoist
parent f38e03dc02
commit 7720cca532
12 changed files with 71 additions and 10 deletions

View File

@ -107,5 +107,25 @@
retrievePercent({{ entry.id }});
});
});
var app = new annotator.App();
app.include(annotator.ui.main, {
element: document.querySelector('article')
});
app.include(annotator.storage.http, {
prefix: '',
urls: {
create: '{{ path('annotations_post_annotation', { 'entry': entry.id }) }}',
update: '{{ path('annotations_put_annotation', { 'comment': 'idComment' }) }}',
destroy: '{{ path('annotations_delete_annotation', { 'comment': 'idComment' }) }}',
search: '{{ path('annotations_get_annotations', { 'entry': entry.id }) }}'
}
});
app
.start()
.then(function () {
app.annotations.load({entry: {{ entry.id }}});
});
</script>
{% endblock %}

View File

@ -198,9 +198,6 @@ app
.then(function () {
app.annotations.load({entry: {{ entry.id }}});
});
</script>
{% endblock %}