From d602d4878f72257ef3c9a8662fbf618218ca0718 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 24 Oct 2013 13:09:16 +0000 Subject: [PATCH] chore(dom) Images: rm " " --- lib/client/dom.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/client/dom.js b/lib/client/dom.js index a837e40b..d1faedf9 100644 --- a/lib/client/dom.js +++ b/lib/client/dom.js @@ -101,14 +101,13 @@ var CloudCmd, Util, DOM, CloudFunc, Dialog; } /* если файла не существует*/ - if ( Util.isContainStr(lText, 'Error: ENOENT, ') ) + if (Util.isContainStr(lText, 'Error: ENOENT, ')) lText = lText.replace('Error: ENOENT, n','N'); /* если не хватает прав для чтения файла*/ - else if ( Util.isContainStr(lText, 'Error: EACCES,') ) + else if (Util.isContainStr(lText, 'Error: EACCES,')) lText = lText.replace('Error: EACCES, p','P'); - DOM.show(lErrorImage); lErrorImage.title = lText;