summaryrefslogtreecommitdiffstatshomepage
path: root/includes/js/dijit/_editor/_Plugin.js
diff options
context:
space:
mode:
authorGravatar mensonge2008-11-14 15:39:19 +0000
committerGravatar mensonge2008-11-14 15:39:19 +0000
commit1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch)
tree3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dijit/_editor/_Plugin.js
parent104d59099e048688c4dbac37d72137006e396558 (diff)
downloadscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz
scuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.zip
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dijit/_editor/_Plugin.js')
-rw-r--r--includes/js/dijit/_editor/_Plugin.js101
1 files changed, 0 insertions, 101 deletions
diff --git a/includes/js/dijit/_editor/_Plugin.js b/includes/js/dijit/_editor/_Plugin.js
deleted file mode 100644
index 32fde3b..0000000
--- a/includes/js/dijit/_editor/_Plugin.js
+++ /dev/null
@@ -1,101 +0,0 @@
-if(!dojo._hasResource["dijit._editor._Plugin"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
-dojo._hasResource["dijit._editor._Plugin"] = true;
-dojo.provide("dijit._editor._Plugin");
-dojo.require("dijit._Widget");
-dojo.require("dijit.Editor");
-dojo.require("dijit.form.Button");
-
-dojo.declare("dijit._editor._Plugin", null, {
- // summary
- // This represents a "plugin" to the editor, which is basically
- // a single button on the Toolbar and some associated code
- constructor: function(/*Object?*/args, /*DomNode?*/node){
- if(args){
- dojo.mixin(this, args);
- }
- this._connects=[];
- },
-
- editor: null,
- iconClassPrefix: "dijitEditorIcon",
- button: null,
- queryCommand: null,
- command: "",
- commandArg: null,
- useDefaultCommand: true,
- buttonClass: dijit.form.Button,
- getLabel: function(key){
- return this.editor.commands[key];
- },
- _initButton: function(props){
- if(this.command.length){
- var label = this.getLabel(this.command);
- var className = this.iconClassPrefix+" "+this.iconClassPrefix + this.command.charAt(0).toUpperCase() + this.command.substr(1);
- if(!this.button){
- props = dojo.mixin({
- label: label,
- showLabel: false,
- iconClass: className,
- dropDown: this.dropDown,
- tabIndex: "-1"
- }, props || {});
- this.button = new this.buttonClass(props);
- }
- }
- },
- destroy: function(f){
- dojo.forEach(this._connects, dojo.disconnect);
- },
- connect: function(o, f, tf){
- this._connects.push(dojo.connect(o, f, this, tf));
- },
- updateState: function(){
- var _e = this.editor;
- var _c = this.command;
- if(!_e){ return; }
- if(!_e.isLoaded){ return; }
- if(!_c.length){ return; }
- if(this.button){
- try{
- var enabled = _e.queryCommandEnabled(_c);
- this.button.setAttribute('disabled', !enabled);
- if(typeof this.button.checked == 'boolean'){
- this.button.setAttribute('checked', _e.queryCommandState(_c));
- }
- }catch(e){
- console.debug(e);
- }
- }
- },
- setEditor: function(/*Widget*/editor){
- // FIXME: detatch from previous editor!!
- this.editor = editor;
-
- // FIXME: prevent creating this if we don't need to (i.e., editor can't handle our command)
- this._initButton();
-
- // FIXME: wire up editor to button here!
- if(this.command.length &&
- !this.editor.queryCommandAvailable(this.command)
- ){
- // console.debug("hiding:", this.command);
- if(this.button){
- this.button.domNode.style.display = "none";
- }
- }
- if(this.button && this.useDefaultCommand){
- this.connect(this.button, "onClick",
- dojo.hitch(this.editor, "execCommand", this.command, this.commandArg)
- );
- }
- this.connect(this.editor, "onNormalizedDisplayChanged", "updateState");
- },
- setToolbar: function(/*Widget*/toolbar){
- if(this.button){
- toolbar.addChild(this.button);
- }
- // console.debug("adding", this.button, "to:", toolbar);
- }
-});
-
-}