From 653d0492aefd420e370028f9df0ce01511073cf9 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 10 Jun 2015 06:08:14 -0400 Subject: [PATCH] fix(dom) operation: copy/move buttons do not work --- lib/client/operation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/client/operation.js b/lib/client/operation.js index 606827ba..189e144e 100644 --- a/lib/client/operation.js +++ b/lib/client/operation.js @@ -104,11 +104,11 @@ if (Loaded) switch(operation) { case 'copy': - this.copy(data); + Operation.copy(data); break; case 'move': - this.move(data); + Operation.move(data); break; } };