fix binding
This commit is contained in:
parent
70e7b5f18c
commit
1150a27a06
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ Ox.Clipboard = function() {
|
||||||
if (!$element) {
|
if (!$element) {
|
||||||
$element = Ox.Element();
|
$element = Ox.Element();
|
||||||
}
|
}
|
||||||
$element.bindEvent.apply(this, arguments);
|
$element.bindEvent.apply($element, arguments);
|
||||||
},
|
},
|
||||||
clear: function() {
|
clear: function() {
|
||||||
clipboard = {items: [], type: void 0};
|
clipboard = {items: [], type: void 0};
|
||||||
|
@ -64,7 +64,7 @@ Ox.Clipboard = function() {
|
||||||
return clipboard.type;
|
return clipboard.type;
|
||||||
},
|
},
|
||||||
unbindEvent: function() {
|
unbindEvent: function() {
|
||||||
$element && $element.unbindEvent.apply(this, arguments);
|
$element && $element.unbindEvent.apply($element, arguments);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue