mirror of
https://github.com/cosmocode/dokuwiki-plugin-struct.git
synced 2025-08-01 15:54:34 +00:00
16 lines
477 B
JavaScript
16 lines
477 B
JavaScript
jQuery(function () {
|
|
/* DOKUWIKI:include script/functions.js */
|
|
|
|
/* DOKUWIKI:include script/EntryEditor.js */
|
|
EntryEditor(jQuery('#dw__editform, form.bureaucracy__plugin'));
|
|
|
|
/* DOKUWIKI:include script/SchemaEditor.js */
|
|
SchemaEditor();
|
|
|
|
/* DOKUWIKI:include script/LookupEditor.js */
|
|
jQuery('div.structlookup table').each(LookupEditor);
|
|
|
|
/* DOKUWIKI:include script/InlineEditor.js */
|
|
InlineEditor(jQuery('div.structaggregation table'));
|
|
});
|