refreshLink: function(linkUrl) {
this._container().text('');
- this._container().attr('style', 'background-image: url(\'' + linkUrl + '\');');
+ if (linkUrl) {
+ 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) {
this._container().text('');
this._container().append($(video_frame));
} else {
- this._container().text(gettext('No video'));
+ this._container().text(gettext('No video. Click here to add link to your video'));
}
},