Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F1042675
Toolbar.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
984 B
Subscribers
None
Toolbar.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
[
"dijit.Toolbar"
]){
dojo
.
_hasResource
[
"dijit.Toolbar"
]
=
true
;
dojo
.
provide
(
"dijit.Toolbar"
);
dojo
.
require
(
"dijit._Widget"
);
dojo
.
require
(
"dijit._KeyNavContainer"
);
dojo
.
require
(
"dijit._Templated"
);
dojo
.
declare
(
"dijit.Toolbar"
,[
dijit
.
_Widget
,
dijit
.
_Templated
,
dijit
.
_KeyNavContainer
],{
templateString
:
"<div class=\"dijit dijitToolbar\" waiRole=\"toolbar\" tabIndex=\"${tabIndex}\" dojoAttachPoint=\"containerNode\">"
+
"</div>"
,
postCreate
:
function
(){
this
.
connectKeyNavHandlers
(
this
.
isLeftToRight
()
?
[
dojo
.
keys
.
LEFT_ARROW
]
:
[
dojo
.
keys
.
RIGHT_ARROW
],
this
.
isLeftToRight
()
?
[
dojo
.
keys
.
RIGHT_ARROW
]
:
[
dojo
.
keys
.
LEFT_ARROW
]);
},
startup
:
function
(){
if
(
this
.
_started
){
return
;
}
this
.
startupKeyNavChildren
();
this
.
inherited
(
arguments
);
}});
dojo
.
require
(
"dijit.ToolbarSeparator"
);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, May 16, 02:49 (1 d, 10 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
22671
Default Alt Text
Toolbar.js (984 B)
Attached To
rZED Zed
Event Timeline
Log In to Comment