mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 07:03:24 +01:00
Fix event bug in windows.
This commit is contained in:
parent
f961f7f071
commit
21cae14ddd
@ -79,7 +79,7 @@ mindplot.DesignerKeyboard = new Class({
|
||||
|
||||
}.bind(this),
|
||||
|
||||
'ctrl+z':function () {
|
||||
'ctrl+z':function (event) {
|
||||
event.preventDefault(event);
|
||||
event.stopPropagation();
|
||||
designer.undo();
|
||||
@ -93,7 +93,7 @@ mindplot.DesignerKeyboard = new Class({
|
||||
|
||||
}.bind(this),
|
||||
|
||||
'ctrl+c':function () {
|
||||
'ctrl+c':function (event) {
|
||||
event.preventDefault(event);
|
||||
event.stopPropagation();
|
||||
designer.copyToClipboard();
|
||||
@ -107,7 +107,7 @@ mindplot.DesignerKeyboard = new Class({
|
||||
|
||||
}.bind(this),
|
||||
|
||||
'ctrl+v':function () {
|
||||
'ctrl+v':function (event) {
|
||||
event.preventDefault(event);
|
||||
event.stopPropagation();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user