diff --git a/lib/client/storage/_filepicker.js b/lib/client/storage/_filepicker.js index a1b0e9d6..0242a704 100644 --- a/lib/client/storage/_filepicker.js +++ b/lib/client/storage/_filepicker.js @@ -17,7 +17,7 @@ var CloudCmd, Util, DOM, $, filepicker; lName = pParams.name; filepicker.store(lContent, {filename: lName}, function(pFPFile){ - console.log(pFPFile); + Util.log(pFPFile); filepicker.exportFile(pFPFile, Util.log, Util.log); }); @@ -25,7 +25,7 @@ var CloudCmd, Util, DOM, $, filepicker; this.saveFile = function(pCallBack){ filepicker.pick(function(FPFile){ - console.log(FPFile); + Util.log(FPFile); DOM.ajax({ url : FPFile.url, @@ -37,7 +37,7 @@ var CloudCmd, Util, DOM, $, filepicker; }; function load(pCallBack){ - console.time('filepicker load'); + Util.time('filepicker load'); var lHTTP = document.location.protocol; DOM.jsload(lHTTP + '//api.filepicker.io/v1/filepicker.js', function(){ @@ -48,7 +48,7 @@ var CloudCmd, Util, DOM, $, filepicker; filepicker.setKey(lKey); DOM.Images.hideLoad(); - console.timeEnd('filepicker loaded'); + Util.timeEnd('filepicker loaded'); Util.exec(pCallBack); }); });