small refactor + fix brackets
[fnpeditor.git] / src / editor / plugins / core / img / imgElement.js
index be0ff24..ff3dad3 100644 (file)
@@ -47,7 +47,12 @@ _.extend(linkElement, {
 
     refreshLink: function(linkUrl) {
         this._container().text('');
-        this._container().attr('style', 'background-image: url(\'' + linkUrl + '\');');
+        if (linkUrl && linkUrl !== 'http://') {
+            this._container().text('');
+            this._container().attr('style', 'background-image: url(\'' + linkUrl + '\');');
+        } else {
+            this._container().text(gettext('No image. Click here to add image'));
+        }
     },
 
     changeLink: function(e) {
@@ -63,7 +68,7 @@ _.extend(linkElement, {
                 prePasteHandler: function(text) {
                                     return this.wlxmlNode.document.getLinkForUrl(text);
                                 }.bind(this),
-                                description: '<a href="#-" class="attachment-library">attachment library</a>'
+                                description: '<a href="#-" class="attachment-library">' + gettext('attachment library') + '</a>'
             }
             ]
         });