Merge branch 'MDL-45682-master' of git://github.com/andrewnicols/moodle

This commit is contained in:
Dan Poltawski 2014-05-26 11:23:59 +01:00
commit 6ca4f19a9f
4 changed files with 11 additions and 5 deletions

View File

@ -1056,7 +1056,9 @@ EditorSelection.prototype = {
* @method saveSelection
*/
saveSelection: function() {
this._selections = this.getSelection();
if (this.isActive()) {
this._selections = this.getSelection();
}
},
/**

File diff suppressed because one or more lines are too long

View File

@ -1051,7 +1051,9 @@ EditorSelection.prototype = {
* @method saveSelection
*/
saveSelection: function() {
this._selections = this.getSelection();
if (this.isActive()) {
this._selections = this.getSelection();
}
},
/**

View File

@ -153,7 +153,9 @@ EditorSelection.prototype = {
* @method saveSelection
*/
saveSelection: function() {
this._selections = this.getSelection();
if (this.isActive()) {
this._selections = this.getSelection();
}
},
/**