mirror of
https://github.com/moodle/moodle.git
synced 2025-04-05 00:12:42 +02:00
Merge branch 'MDL-46712-master' of git://github.com/jethac/moodle
This commit is contained in:
commit
cb1bc5eb6b
@ -3330,6 +3330,7 @@ EDITOR.prototype = {
|
||||
}
|
||||
this.dialogue.centerDialogue();
|
||||
this.dialogue.show();
|
||||
drawingcanvas.on('windowresize', this.resize, this);
|
||||
},
|
||||
|
||||
/**
|
||||
@ -3836,6 +3837,16 @@ EDITOR.prototype = {
|
||||
this.currentedit.path = [];
|
||||
},
|
||||
|
||||
/**
|
||||
* Resize the dialogue window when the browser is resized.
|
||||
* @public
|
||||
* @method resize
|
||||
*/
|
||||
resize : function() {
|
||||
this.dialogue.centerDialogue();
|
||||
return true;
|
||||
},
|
||||
|
||||
/**
|
||||
* Factory method for creating annotations of the correct subclass.
|
||||
* @public
|
||||
@ -4124,6 +4135,7 @@ M.assignfeedback_editpdf.editor.init = M.assignfeedback_editpdf.editor.init || f
|
||||
"graphics",
|
||||
"json",
|
||||
"event-move",
|
||||
"event-resize",
|
||||
"querystring-stringify-simple",
|
||||
"moodle-core-notification-dialog",
|
||||
"moodle-core-notification-exception",
|
||||
|
File diff suppressed because one or more lines are too long
@ -3330,6 +3330,7 @@ EDITOR.prototype = {
|
||||
}
|
||||
this.dialogue.centerDialogue();
|
||||
this.dialogue.show();
|
||||
drawingcanvas.on('windowresize', this.resize, this);
|
||||
},
|
||||
|
||||
/**
|
||||
@ -3836,6 +3837,16 @@ EDITOR.prototype = {
|
||||
this.currentedit.path = [];
|
||||
},
|
||||
|
||||
/**
|
||||
* Resize the dialogue window when the browser is resized.
|
||||
* @public
|
||||
* @method resize
|
||||
*/
|
||||
resize : function() {
|
||||
this.dialogue.centerDialogue();
|
||||
return true;
|
||||
},
|
||||
|
||||
/**
|
||||
* Factory method for creating annotations of the correct subclass.
|
||||
* @public
|
||||
@ -4124,6 +4135,7 @@ M.assignfeedback_editpdf.editor.init = M.assignfeedback_editpdf.editor.init || f
|
||||
"graphics",
|
||||
"json",
|
||||
"event-move",
|
||||
"event-resize",
|
||||
"querystring-stringify-simple",
|
||||
"moodle-core-notification-dialog",
|
||||
"moodle-core-notification-exception",
|
||||
|
@ -325,6 +325,7 @@ EDITOR.prototype = {
|
||||
}
|
||||
this.dialogue.centerDialogue();
|
||||
this.dialogue.show();
|
||||
drawingcanvas.on('windowresize', this.resize, this);
|
||||
},
|
||||
|
||||
/**
|
||||
@ -831,6 +832,16 @@ EDITOR.prototype = {
|
||||
this.currentedit.path = [];
|
||||
},
|
||||
|
||||
/**
|
||||
* Resize the dialogue window when the browser is resized.
|
||||
* @public
|
||||
* @method resize
|
||||
*/
|
||||
resize : function() {
|
||||
this.dialogue.centerDialogue();
|
||||
return true;
|
||||
},
|
||||
|
||||
/**
|
||||
* Factory method for creating annotations of the correct subclass.
|
||||
* @public
|
||||
|
@ -8,6 +8,7 @@
|
||||
"graphics",
|
||||
"json",
|
||||
"event-move",
|
||||
"event-resize",
|
||||
"querystring-stringify-simple",
|
||||
"moodle-core-notification-dialog",
|
||||
"moodle-core-notification-exception",
|
||||
|
Loading…
x
Reference in New Issue
Block a user