mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
fixing bugs in shortcuts and modal dialog with errors
This commit is contained in:
parent
8a0194c26c
commit
bfd00c9649
@ -266,7 +266,7 @@ mindplot.DesignerKeyboard = new Class({
|
||||
// If a modifier is press, the key selected must be ignored.
|
||||
var pressKey = String.fromCharCode(keyCode);
|
||||
if (event.ctrlKey || event.altKey || event.metaKey || event.shiftKey) {
|
||||
pressKey = "";
|
||||
return;
|
||||
}
|
||||
nodes[0].showTextEditor(pressKey);
|
||||
event.stopPropagation();
|
||||
|
@ -92,7 +92,6 @@ var BootstrapDialog = new Class({
|
||||
|
||||
setContent: function(content) {
|
||||
var modalBody = this._native.find('.modal-body');
|
||||
modalBody.empty();
|
||||
modalBody.append(content);
|
||||
},
|
||||
|
||||
|
@ -44,6 +44,22 @@
|
||||
}
|
||||
return typeof i;
|
||||
};
|
||||
this.instanceOf = function (t, i) {
|
||||
if (t == null) {
|
||||
return false;
|
||||
}
|
||||
var s = t.$constructor || t.constructor;
|
||||
while (s) {
|
||||
if (s === i) {
|
||||
return true;
|
||||
}
|
||||
s = s.parent;
|
||||
}
|
||||
if (!t.hasOwnProperty) {
|
||||
return false;
|
||||
}
|
||||
return t instanceof i;
|
||||
};
|
||||
var f = this.Function;
|
||||
var p = true;
|
||||
for (var k in {toString: 1}) {
|
||||
@ -232,6 +248,16 @@
|
||||
return this;
|
||||
}
|
||||
});
|
||||
var l = function (i) {
|
||||
switch (o(i)) {
|
||||
case"array":
|
||||
return i.clone();
|
||||
case"object":
|
||||
return Object.clone(i);
|
||||
default:
|
||||
return i;
|
||||
}
|
||||
};
|
||||
Array.implement("clone", function () {
|
||||
var s = this.length, t = new Array(s);
|
||||
while (s--) {
|
||||
|
Loading…
Reference in New Issue
Block a user