Files
dokuwiki-plugin-struct/script.js
Andreas Gohr 6b5e52fdc8 first go at the lookup table editor
All functionality is added via JavaScript after an initial AJAX call.
This call can be used to check permissions later (without the need to
invalidate caches)
2016-08-04 16:19:43 +02:00

16 lines
451 B
JavaScript

jQuery(function () {
/* DOKUWIKI:include script/functions.js */
/* DOKUWIKI:include script/EntryEditor.js */
EntryEditor(jQuery('#dw__editform'));
/* DOKUWIKI:include script/SchemaEditor.js */
SchemaEditor();
/* DOKUWIKI:include script/LookupEditor.js */
LookupEditor(jQuery('div.structaggregation table'));
/* DOKUWIKI:include script/InlineEditor.js */
InlineEditor(jQuery('div.structaggregation table'));
});