[IMP] website: media editor: add feedback when the user try to remove a picture

bzr revid: chm@openerp.com-20140407073247-davv0udxz5n5qx35
This commit is contained in:
chm@openerp.com 2014-04-07 09:32:47 +02:00
parent 583a47b7b9
commit 26d62c4e55
1 changed files with 6 additions and 1 deletions

View File

@ -1590,8 +1590,12 @@
try_remove: function (e) {
var $help_block = this.$('.help-block').empty();
var self = this;
var id = parseInt($(e.target).data('id'), 10);
var $a = $(e.target);
var id = parseInt($a.data('id'), 10);
var attachment = _.findWhere(this.records, {id: id});
var $both = $a.parent().children();
$both.css({borderWidth: "5px", borderColor: "#f00"});
return openerp.jsonRpc('/web/dataset/call_kw', 'call', {
model: 'ir.attachment',
@ -1607,6 +1611,7 @@
self.display_attachments();
return;
}
$both.css({borderWidth: "", borderColor: ""});
$help_block.replaceWith(openerp.qweb.render(
'website.editor.dialog.image.existing.error', {
views: prevented[id]