mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-19 03:31:29 +00:00
update dojo to 1.7.3
This commit is contained in:
@@ -1,81 +1,2 @@
|
||||
/*
|
||||
Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
|
||||
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
||||
see: http://dojotoolkit.org/license for details
|
||||
*/
|
||||
|
||||
|
||||
if(!dojo._hasResource["dijit._editor.plugins.NewPage"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
|
||||
dojo._hasResource["dijit._editor.plugins.NewPage"] = true;
|
||||
dojo.provide("dijit._editor.plugins.NewPage");
|
||||
dojo.require("dijit._editor._Plugin");
|
||||
dojo.require("dijit.form.Button");
|
||||
dojo.require("dojo.i18n");
|
||||
dojo.requireLocalization("dijit._editor", "commands", null, "ROOT,ar,ca,cs,da,de,el,es,fi,fr,he,hu,it,ja,kk,ko,nb,nl,pl,pt,pt-pt,ro,ru,sk,sl,sv,th,tr,zh,zh-tw");
|
||||
|
||||
|
||||
dojo.declare("dijit._editor.plugins.NewPage",dijit._editor._Plugin,{
|
||||
// summary:
|
||||
// This plugin provides a simple 'new page' calability. In other
|
||||
// words, set content to some default user defined string.
|
||||
|
||||
// content: [public] String
|
||||
// The default content to insert into the editor as the new page.
|
||||
// The default is the <br> tag, a single blank line.
|
||||
content: "<br>",
|
||||
|
||||
_initButton: function(){
|
||||
// summary:
|
||||
// Over-ride for creation of the Print button.
|
||||
var strings = dojo.i18n.getLocalization("dijit._editor", "commands"),
|
||||
editor = this.editor;
|
||||
this.button = new dijit.form.Button({
|
||||
label: strings["newPage"],
|
||||
dir: editor.dir,
|
||||
lang: editor.lang,
|
||||
showLabel: false,
|
||||
iconClass: this.iconClassPrefix + " " + this.iconClassPrefix + "NewPage",
|
||||
tabIndex: "-1",
|
||||
onClick: dojo.hitch(this, "_newPage")
|
||||
});
|
||||
},
|
||||
|
||||
setEditor: function(/*dijit.Editor*/ editor){
|
||||
// summary:
|
||||
// Tell the plugin which Editor it is associated with.
|
||||
// editor: Object
|
||||
// The editor object to attach the newPage capability to.
|
||||
this.editor = editor;
|
||||
this._initButton();
|
||||
},
|
||||
|
||||
updateState: function(){
|
||||
// summary:
|
||||
// Over-ride for button state control for disabled to work.
|
||||
this.button.set("disabled", this.get("disabled"));
|
||||
},
|
||||
|
||||
_newPage: function(){
|
||||
// summary:
|
||||
// Function to set the content to blank.
|
||||
// tags:
|
||||
// private
|
||||
this.editor.beginEditing();
|
||||
this.editor.set("value", this.content);
|
||||
this.editor.endEditing();
|
||||
this.editor.focus();
|
||||
}
|
||||
});
|
||||
|
||||
// Register this plugin.
|
||||
dojo.subscribe(dijit._scopeName + ".Editor.getPlugin",null,function(o){
|
||||
if(o.plugin){ return; }
|
||||
var name = o.args.name.toLowerCase();
|
||||
if(name === "newpage"){
|
||||
o.plugin = new dijit._editor.plugins.NewPage({
|
||||
content: ("content" in o.args)?o.args.content:"<br>"
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
}
|
||||
//>>built
|
||||
define("dijit/_editor/plugins/NewPage",["dojo/_base/declare","dojo/i18n","dojo/_base/lang","../_Plugin","../../form/Button","dojo/i18n!../nls/commands"],function(_1,_2,_3,_4,_5){var _6=_1("dijit._editor.plugins.NewPage",_4,{content:"<br>",_initButton:function(){var _7=_2.getLocalization("dijit._editor","commands"),_8=this.editor;this.button=new _5({label:_7["newPage"],dir:_8.dir,lang:_8.lang,showLabel:false,iconClass:this.iconClassPrefix+" "+this.iconClassPrefix+"NewPage",tabIndex:"-1",onClick:_3.hitch(this,"_newPage")});},setEditor:function(_9){this.editor=_9;this._initButton();},updateState:function(){this.button.set("disabled",this.get("disabled"));},_newPage:function(){this.editor.beginEditing();this.editor.set("value",this.content);this.editor.endEditing();this.editor.focus();}});_4.registry["newPage"]=_4.registry["newpage"]=function(_a){return new _6({content:("content" in _a)?_a.content:"<br>"});};return _6;});
|
||||
Reference in New Issue
Block a user