summaryrefslogtreecommitdiff
path: root/addons/web/doc/module/28
blob: 800e7a6f084a888cc1b1820b53b0e208187dd0e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Index: web_example/static/src/js/first_module.js
===================================================================
--- web_example.orig/static/src/js/first_module.js
+++ web_example/static/src/js/first_module.js
@@ -66,7 +66,7 @@ openerp.web_example = function (instance
                 user_id: instance.session.uid,
                 time: time,
             };
-            this.model.call('create', [record]).done(function () {
+            return this.model.call('create', [record]).done(function () {
                 self.display_record(record);
             });
         },