Browse Source

[FIX] don't mark our field as dirty for fake input chnages

pull/480/head
Holger Brunn 8 years ago
parent
commit
4e35a0fea1
No known key found for this signature in database GPG Key ID: 1C9760FECA3AE18
  1. 8
      field_rrule/static/src/js/field_rrule.js

8
field_rrule/static/src/js/field_rrule.js

@ -153,11 +153,11 @@ openerp.field_rrule = function(instance)
if(!noreset)
{
this.reset_fields(value, current_item, input.attr('name'));
this.trigger("change:value", this, {
oldValue: old_values,
newValue: all_values,
});
}
this.trigger("change:value", this, {
oldValue: old_values,
newValue: all_values,
});
},
toggle_recurrence_type: function(e, noreset)
{

Loading…
Cancel
Save