mirror of
https://gh.llkk.cc/https://github.com/h5p/moodle-mod_hvp.git
synced 2026-03-04 13:36:41 +08:00
But not yet fully functional due to editor lacking proper Moodle file system support h5p/h5p-moodle-plugin#47 HFJ-1844
14 lines
387 B
JavaScript
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);
|