Sha256: 93d74a95a830e1471e76b4f2cecb840a60796b36d854c61cefd43e2964671a1a

Contents?: true

Size: 1.36 KB

Versions: 4

Compression:

Stored size: 1.36 KB

Contents

dojo.provide("dijit._editor.plugins.TabIndent");
dojo.experimental("dijit._editor.plugins.TabIndent");

dojo.require("dijit._editor._Plugin");

dojo.declare("dijit._editor.plugins.TabIndent",
	dijit._editor._Plugin,
	{
		//summary: This plugin is used to allow the use of the tab and shift-tab keys
		//		   to indent/outdent list items.  This overrides the default behavior
		//         of moving focus from/to the toolbar
		
		useDefaultCommand: false,
		buttonClass: dijit.form.ToggleButton,
		command: "tabIndent",

		_initButton: function(){
			this.inherited("_initButton", arguments);
				this.connect(this.button, "onClick", this._tabIndent);		
			},

		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.isTabIndent;
					if(typeof this.button.checked == 'boolean'){ 
						this.button.attr('checked', enabled);
					}
				}catch(e){
					console.debug(e);
				}
			}
		},

		_tabIndent: function(){
			// toggle the value for isTabIndent
			this.editor.isTabIndent = !this.editor.isTabIndent;
		}
	}
);

dojo.subscribe(dijit._scopeName + ".Editor.getPlugin",null,function(o){
	if(o.plugin){ return; }
	switch(o.args.name){
	case "tabIndent":
		o.plugin = new dijit._editor.plugins.TabIndent({command: o.args.name});
	}
});

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dojo-pkg-1.120.0 data/dojo-release-1.2.0-src/dijit/_editor/plugins/TabIndent.js
dojo-pkg-1.121.0 data/dojo-release-1.2.1-src/dijit/_editor/plugins/TabIndent.js
dojo-pkg-1.122.0 data/dojo-release-1.2.2-src/dijit/_editor/plugins/TabIndent.js
dojo-pkg-1.123.0 data/dojo-release-1.2.3-src/dijit/_editor/plugins/TabIndent.js