- Add tab as option to creating a child node.

This commit is contained in:
Paulo Gustavo Veiga
2012-09-26 19:31:41 -03:00
parent 65f4238c3e
commit f8fb56e49f
2 changed files with 7 additions and 3 deletions

View File

@@ -72,7 +72,11 @@ mindplot.DesignerKeyboard = new Class({
designer.createChildForSelectedNode();
}.bind(this),
'-':function () {
'tab':function () {
designer.createChildForSelectedNode();
}.bind(this),
'-':function () { // "-" is a insert on several Browsers. Don't ask why ...
designer.createChildForSelectedNode();
}.bind(this),