diff --git a/source/Ox.UI/js/Core/Clipboard.js b/source/Ox.UI/js/Core/Clipboard.js index a3c9e95a..99f26706 100644 --- a/source/Ox.UI/js/Core/Clipboard.js +++ b/source/Ox.UI/js/Core/Clipboard.js @@ -38,7 +38,7 @@ Ox.Clipboard = function() { if (!$element) { $element = Ox.Element(); } - $element.bindEvent.apply(this, arguments); + $element.bindEvent.apply($element, arguments); }, clear: function() { clipboard = {items: [], type: void 0}; @@ -64,7 +64,7 @@ Ox.Clipboard = function() { return clipboard.type; }, unbindEvent: function() { - $element && $element.unbindEvent.apply(this, arguments); + $element && $element.unbindEvent.apply($element, arguments); } }; };