Merge branch 'MDL-46712-master' of git://github.com/jethac/moodle

This commit is contained in:
Dan Poltawski 2014-10-24 15:37:26 +01:00
commit cb1bc5eb6b
5 changed files with 39 additions and 3 deletions

View File

@ -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",

View File

@ -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",

View File

@ -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

View File

@ -8,6 +8,7 @@
"graphics",
"json",
"event-move",
"event-resize",
"querystring-stringify-simple",
"moodle-core-notification-dialog",
"moodle-core-notification-exception",