1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
| define([
| "require",
| "dojo/_base/declare", // declare
| "dojo/has",
| "dojo/keys", // keys.LEFT_ARROW keys.RIGHT_ARROW
| "dojo/ready",
| "./_Widget",
| "./_KeyNavContainer",
| "./_TemplatedMixin"
| ], function(require, declare, has, keys, ready, _Widget, _KeyNavContainer, _TemplatedMixin){
|
| // module:
| // dijit/Toolbar
|
|
| // Back compat w/1.6, remove for 2.0
| if(has("dijit-legacy-requires")){
| ready(0, function(){
| var requires = ["dijit/ToolbarSeparator"];
| require(requires); // use indirection so modules not rolled into a build
| });
| }
|
| return declare("dijit.Toolbar", [_Widget, _TemplatedMixin, _KeyNavContainer], {
| // summary:
| // A Toolbar widget, used to hold things like `dijit/Editor` buttons
|
| templateString:
| '<div class="dijit" role="toolbar" tabIndex="${tabIndex}" data-dojo-attach-point="containerNode">' +
| '</div>',
|
| baseClass: "dijitToolbar",
|
| _onLeftArrow: function(){
| this.focusPrev();
| },
|
| _onRightArrow: function(){
| this.focusNext();
| }
| });
| });
|
|