keywordInput.focus();
}
-$(function() {
+function initNoteContentPage() {
$("#thank-button").click(function(event) {
event.preventDefault();
}
});
}
+}
+function initNoteKeywordsPage() {
$('.definition').keydown(tabHandler);
$('#add-row-btn').click(addForm);
$('#keyword-form').toggle();
});
-});
+}
<script src="{{ STATIC_URL }}js/annotator-full.min.js"></script>
{% endcompress %}
<script>
- $(function() {
- $(document).foundation('joyride', 'start');
- });
+ {% if show_note_container %}
+ $(function() {
+ $(document).foundation('joyride', 'start');
+ initNoteContentPage();
+ });
+ {% endif %}
+
+ {% if show_keywords %}
+ $(function() {
+ initNoteKeywordsPage();
+ });
+ {% endif %}
</script>
{% endblock %}