You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
477 B
JavaScript
15 lines
477 B
JavaScript
/* global dijit */
|
|
define(["dojo/_base/declare", "dijit/Toolbar"], function (declare) {
|
|
return declare("fox.Toolbar", dijit.Toolbar, {
|
|
_onContainerKeydown: function(/* Event */ e) {
|
|
return; // Stop dijit.Toolbar from interpreting keystrokes
|
|
},
|
|
_onContainerKeypress: function(/* Event */ e) {
|
|
return; // Stop dijit.Toolbar from interpreting keystrokes
|
|
},
|
|
focus: function() {
|
|
return; // Stop dijit.Toolbar from focusing the first child on click
|
|
},
|
|
});
|
|
});
|