mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-08-01 15:54:34 +00:00

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)
16 lines
451 B
JavaScript
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'));
|
|
});
|