[IMP] Code styling
authorFabien Meghazi <fme@openerp.com>
Thu, 21 Jun 2012 09:55:23 +0000 (11:55 +0200)
committerFabien Meghazi <fme@openerp.com>
Thu, 21 Jun 2012 09:55:23 +0000 (11:55 +0200)
bzr revid: fme@openerp.com-20120621095523-tfc8r2pan80f9a3i

addons/web_dashboard/static/src/js/dashboard.js

index a27c5f3..e08113d 100644 (file)
@@ -231,14 +231,14 @@ instance.web.form.DashBoard = instance.web.form.FormWidget.extend({
         }
     },
     renderElement: function() {
-        var self = this;
         var check = _.detect(this.node.children, function(column, column_index) {
             return _.detect(column.children,function(element){
                 return element.tag === "action"? element: false;
             });
         });
-        if (!check)
-            return self.no_result();
+        if (!check) {
+            return this.no_result();
+        }
         // We should start with three columns available
         for (var i = this.node.children.length; i < 3; i++) {
             this.node.children.push({
@@ -250,8 +250,8 @@ instance.web.form.DashBoard = instance.web.form.FormWidget.extend({
         var rendered = QWeb.render(this.form_template, this);
         this.$element.html(rendered);
     },
-    no_result: function () {
-        if (this.view.options.action.help){
+    no_result: function() {
+        if (this.view.options.action.help) {
             this.$element.append(
                 $('<div class="oe_view_nocontent">')
                     .append($('<img>', { src: '/web_dashboard/static/src/img/view_todo_arrow.png' }))