[FIX] Fixed spacing.
authorvta vta@openerp.com <>
Mon, 8 Oct 2012 11:40:26 +0000 (13:40 +0200)
committervta vta@openerp.com <>
Mon, 8 Oct 2012 11:40:26 +0000 (13:40 +0200)
bzr revid: vta@openerp.com-20121008114026-zpvwsl3c54anh512

addons/web/static/src/js/view_form.js

index b6ccc19..4b78072 100644 (file)
@@ -2893,7 +2893,7 @@ instance.web.form.FieldMany2One = instance.web.form.AbstractField.extend(instanc
                     title: _t("Open: ") + self.string
                 }
             );
-           pop.on('on_write_complete',self,function(){
+            pop.on('on_write_complete', self, function(){
                 self.display_value = {};
                 self.render_value();
                 self.focus();
@@ -4038,7 +4038,7 @@ instance.web.form.Many2ManyListView = instance.web.ListView.extend(/** @lends in
             title: _t("Open: ") + this.m2m_field.string,
             readonly: this.getParent().get("effective_readonly")
         });
-        pop.on('on_write_complete',self,self.reload_content);
+        pop.on('on_write_complete', self, self.reload_content);
     }
 });
 
@@ -4285,7 +4285,9 @@ instance.web.form.AbstractFormPopup = instance.web.Widget.extend({
         };
         this.dataset.write_function = function(id, data, options, sup) {
             var fct = self.options.write_function || sup;
-            return fct.call(this, id, data, options).then(function(){self.trigger('on_write_complete',self)});
+            return fct.call(this, id, data, options).then(function() {
+                self.trigger('on_write_complete');
+            });
         };
         this.dataset.parent_view = this.options.parent_view;
         this.dataset.child_name = this.options.child_name;