Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F391374
Toolbar.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
Toolbar.js
View Options
if
(
!
dojo
.
_hasResource
[
"dijit.Toolbar"
]){
//_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo
.
_hasResource
[
"dijit.Toolbar"
]
=
true
;
dojo
.
provide
(
"dijit.Toolbar"
);
dojo
.
require
(
"dijit._Widget"
);
dojo
.
require
(
"dijit._Container"
);
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">'
+
// '<table style="table-layout: fixed" class="dijitReset dijitToolbarTable">' + // factor out style
// '<tr class="dijitReset" dojoAttachPoint="containerNode"></tr>'+
// '</table>' +
'</div>'
,
tabIndex
:
"0"
,
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
(){
this
.
startupKeyNavChildren
();
}
}
);
// Combine with dijit.MenuSeparator??
dojo
.
declare
(
"dijit.ToolbarSeparator"
,
[
dijit
.
_Widget
,
dijit
.
_Templated
],
{
// summary
// A line between two menu items
templateString
:
'<div class="dijitToolbarSeparator dijitInline"></div>'
,
postCreate
:
function
(){
dojo
.
setSelectable
(
this
.
domNode
,
false
);
},
isFocusable
:
function
(){
return
false
;
}
});
}
File Metadata
Details
Attached
Mime Type
text/html
Expires
Sat, Feb 22, 20:24 (1 d, 2 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
23162
Default Alt Text
Toolbar.js (1 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment