[IMP]Minor change

bzr revid: vja@tinyerp.com-20130502072052-2jo04lhsz3y3fhxi
This commit is contained in:
Vishmita Jadeja (openerp) 2013-05-02 12:50:52 +05:30
parent 23687ef653
commit 330cf79497
1 changed files with 1 additions and 1 deletions

View File

@ -2760,7 +2760,7 @@ instance.web.form.FieldBoolean = instance.web.form.AbstractField.extend({
var $disabled = this.$el.find('input[type=checkbox]:disabled');
$disabled.each(function (){
$(this).next('div').remove();
$(this).closest("span").append($('<div class="boolean"/>'));
$(this).closest("span").append($('<div class="boolean"></div>'));
});
}
});