block FeedTree from interpreting keystrokes

This commit is contained in:
Andrew Dolgov 2012-02-02 12:40:10 +04:00
parent 6841e9d75f
commit 71bb56d952
1 changed files with 3 additions and 0 deletions

View File

@ -94,6 +94,9 @@ dojo.declare("fox.FeedStoreModel", dijit.tree.ForestStoreModel, {
});
dojo.declare("fox.FeedTree", dijit.Tree, {
_onKeyPress: function(/* Event */ e) {
return; // Stop dijit.Tree from interpreting keystrokes
},
_createTreeNode: function(args) {
var tnode = new dijit._TreeNode(args);