[FIX] remove annoying alert in base_hello, remove trailing commas and add missing semicolons

bzr revid: xmo@openerp.com-20110318170111-9t5m1uqngu3cfyph
This commit is contained in:
Xavier Morel 2011-03-18 18:01:11 +01:00
parent b44fdabb9a
commit c0068f172a
1 changed files with 3 additions and 3 deletions

View File

@ -7,12 +7,12 @@ openerp.base_hello = function(openerp) {
openerp.base.SearchView = openerp.base.SearchView.extend({
init:function() {
this._super.apply(this,arguments);
this.on_search.add(function(){alert('hello')});
},
this.on_search.add(function(){console.log('hello');});
}
});
// here you may tweak globals object, if any, and play with on_* or do_* callbacks on them
}
};
// vim:et fdc=0 fdl=0: