Add tooltip to menu.

This commit is contained in:
Paulo Gustavo Veiga
2012-03-19 23:29:52 -03:00
parent c6acc88fd7
commit ce53e8e726
12 changed files with 238 additions and 121 deletions

View File

@@ -97,6 +97,14 @@ mindplot.DesignerKeyboard = new Class({
designer.redo();
}.bind(this),
'ctrl+y' :function() {
designer.redo();
}.bind(this),
'meta+y' : function() {
designer.redo();
}.bind(this),
'ctrl+a' : function(event) {
designer.selectAll();
event.preventDefault();