Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F947303
ToolbarLineBreak.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1009 B
Subscribers
None
ToolbarLineBreak.js
View Options
/*
Copyright (c) 2004-2009, 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
[
"dojox.editor.plugins.ToolbarLineBreak"
]){
dojo
.
_hasResource
[
"dojox.editor.plugins.ToolbarLineBreak"
]
=
true
;
dojo
.
provide
(
"dojox.editor.plugins.ToolbarLineBreak"
);
dojo
.
require
(
"dijit._Widget"
);
dojo
.
require
(
"dijit._Templated"
);
dojo
.
require
(
"dijit._editor._Plugin"
);
dojo
.
declare
(
"dojox.editor.plugins._ToolbarLineBreak"
,[
dijit
.
_Widget
,
dijit
.
_Templated
],{
templateString
:
"<span class='dijit dijitReset'><br></span>"
,
postCreate
:
function
(){
dojo
.
setSelectable
(
this
.
domNode
,
false
);
},
isFocusable
:
function
(){
return
false
;
}});
dojo
.
subscribe
(
dijit
.
_scopeName
+
".Editor.getPlugin"
,
null
,
function
(
o
){
if
(
o
.
plugin
){
return
;
}
var
_1
=
o
.
args
.
name
.
toLowerCase
();
if
(
_1
===
"||"
||
_1
===
"toolbarlinebreak"
){
o
.
plugin
=
new
dijit
.
_editor
.
_Plugin
({
button
:
new
dojox
.
editor
.
plugins
.
_ToolbarLineBreak
()});
}
});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 26, 11:17 (1 d, 14 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27125
Default Alt Text
ToolbarLineBreak.js (1009 B)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment