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.
16 lines
498 B
JavaScript
16 lines
498 B
JavaScript
/* global dijit, define */
|
|
|
|
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
|
|
},
|
|
});
|
|
});
|