mirror of
https://github.com/moodle/moodle.git
synced 2025-04-22 00:42:54 +02:00
MDL-45364 atto_rtl: Fix JS lint
This commit is contained in:
parent
c18acb8997
commit
b27d4eac7f
@ -65,7 +65,7 @@ Y.namespace('M.atto_rtl').Button = Y.Base.create('button', Y.M.editor_atto.Edito
|
||||
*/
|
||||
_toggleRTL: function(e, direction) {
|
||||
var host = this.get('host'),
|
||||
sourceSelection = rangy.saveSelection(),
|
||||
sourceSelection = window.rangy.saveSelection(),
|
||||
selection = host.getSelection(),
|
||||
newDirection = {
|
||||
rtl: 'ltr',
|
||||
@ -84,7 +84,7 @@ Y.namespace('M.atto_rtl').Button = Y.Base.create('button', Y.M.editor_atto.Edito
|
||||
}
|
||||
|
||||
// Change selection from the containing paragraph to the original one.
|
||||
rangy.restoreSelection(sourceSelection);
|
||||
window.rangy.restoreSelection(sourceSelection);
|
||||
// Mark the text as having been updated.
|
||||
this.markUpdated();
|
||||
}
|
||||
|
@ -1 +1 @@
|
||||
YUI.add("moodle-atto_rtl-button",function(e,t){e.namespace("M.atto_rtl").Button=e.Base.create("button",e.M.editor_atto.EditorPlugin,[],{initializer:function(){var e;e="ltr",this.addButton({icon:"e/left_to_right",title:e,buttonName:e,callback:this._toggleRTL,callbackArgs:e}),e="rtl",this.addButton({icon:"e/right_to_left",title:e,buttonName:e,callback:this._toggleRTL,callbackArgs:e})},_toggleRTL:function(e,t){var n=this.get("host"),r=rangy.saveSelection(),i=n.getSelection(),s={rtl:"ltr",ltr:"rtl"};if(i){var o=n.formatSelectionBlock(),u=o.getDOMNode(),a=u.getAttribute("dir");a===t?u.setAttribute("dir",s[t]):u.setAttribute("dir",t),rangy.restoreSelection(r),this.markUpdated()}}})},"@VERSION@",{requires:["moodle-editor_atto-plugin"]});
|
||||
YUI.add("moodle-atto_rtl-button",function(e,t){e.namespace("M.atto_rtl").Button=e.Base.create("button",e.M.editor_atto.EditorPlugin,[],{initializer:function(){var e;e="ltr",this.addButton({icon:"e/left_to_right",title:e,buttonName:e,callback:this._toggleRTL,callbackArgs:e}),e="rtl",this.addButton({icon:"e/right_to_left",title:e,buttonName:e,callback:this._toggleRTL,callbackArgs:e})},_toggleRTL:function(e,t){var n=this.get("host"),r=window.rangy.saveSelection(),i=n.getSelection(),s={rtl:"ltr",ltr:"rtl"};if(i){var o=n.formatSelectionBlock(),u=o.getDOMNode(),a=u.getAttribute("dir");a===t?u.setAttribute("dir",s[t]):u.setAttribute("dir",t),window.rangy.restoreSelection(r),this.markUpdated()}}})},"@VERSION@",{requires:["moodle-editor_atto-plugin"]});
|
||||
|
@ -65,7 +65,7 @@ Y.namespace('M.atto_rtl').Button = Y.Base.create('button', Y.M.editor_atto.Edito
|
||||
*/
|
||||
_toggleRTL: function(e, direction) {
|
||||
var host = this.get('host'),
|
||||
sourceSelection = rangy.saveSelection(),
|
||||
sourceSelection = window.rangy.saveSelection(),
|
||||
selection = host.getSelection(),
|
||||
newDirection = {
|
||||
rtl: 'ltr',
|
||||
@ -84,7 +84,7 @@ Y.namespace('M.atto_rtl').Button = Y.Base.create('button', Y.M.editor_atto.Edito
|
||||
}
|
||||
|
||||
// Change selection from the containing paragraph to the original one.
|
||||
rangy.restoreSelection(sourceSelection);
|
||||
window.rangy.restoreSelection(sourceSelection);
|
||||
// Mark the text as having been updated.
|
||||
this.markUpdated();
|
||||
}
|
||||
|
@ -63,7 +63,7 @@ Y.namespace('M.atto_rtl').Button = Y.Base.create('button', Y.M.editor_atto.Edito
|
||||
*/
|
||||
_toggleRTL: function(e, direction) {
|
||||
var host = this.get('host'),
|
||||
sourceSelection = rangy.saveSelection(),
|
||||
sourceSelection = window.rangy.saveSelection(),
|
||||
selection = host.getSelection(),
|
||||
newDirection = {
|
||||
rtl: 'ltr',
|
||||
@ -82,7 +82,7 @@ Y.namespace('M.atto_rtl').Button = Y.Base.create('button', Y.M.editor_atto.Edito
|
||||
}
|
||||
|
||||
// Change selection from the containing paragraph to the original one.
|
||||
rangy.restoreSelection(sourceSelection);
|
||||
window.rangy.restoreSelection(sourceSelection);
|
||||
// Mark the text as having been updated.
|
||||
this.markUpdated();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user