Fix Firefox issue.

This commit is contained in:
Paulo Veiga
2011-08-21 22:53:37 -03:00
parent ad13c296ad
commit f036a7684e
3 changed files with 20 additions and 6 deletions

View File

@@ -94,6 +94,17 @@ mindplot.DesignerKeyboard = new Class({
designer.changeFontWeight();
},
'ctrl+s' : function(event) {
event.preventDefault();
designer.save(null, true);
},
'meta+s' : function(event) {
event.preventDefault();
designer.save(null, true);
},
'ctrl+i' : function() {
designer.changeFontStyle();
},