moodle-mod_hvp/editor.js
Frode Petterson b32d74e6f0 Added the editor to the form
But not yet fully functional due to editor lacking proper Moodle file system support
h5p/h5p-moodle-plugin#47
HFJ-1844
2016-04-21 14:48:40 +02:00

14 lines
387 B
JavaScript

(function ($) {
$(document).ready(function () {
var $editor = $('.h5p-editor');
H5PEditor.init(
$('#mform1'),
$('input[name="h5paction"]'),
$('#fitem_id_h5pfile'),
$editor.parent().parent(), // Static elements have no custom id or class
$editor,
$('input[name="h5plibrary"]'),
$('input[name="h5pparams"]')
);
});
})(H5P.jQuery);