fix(dom) operation: copy/move buttons do not work

This commit is contained in:
coderaiser 2015-06-10 06:08:14 -04:00
parent 5f22fc64cb
commit 653d0492ae

View file

@ -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;
}
};