fix(menu) delete: Operation.show -> CloudCmd.Operation.show

This commit is contained in:
coderaiser 2015-07-09 10:18:47 -04:00
parent 9a78ce3fe5
commit b96e31f083

View file

@ -170,7 +170,9 @@ var CloudCmd, Util, DOM, CloudFunc, MenuIO;
'Rename' : function() {
setTimeout(DOM.renameCurrent, 100);
},
'Delete' : Operation.show.bind(null, 'delete'),
'Delete' : function() {
CloudCmd.Operation.show('delete');
},
'Pack' : DOM.pack,
'Extract' : DOM.extract,
'Upload To' : {},