[IMP] remove annoying useless logging

bzr revid: xmo@openerp.com-20111212162643-b32fct6gqo23fxpr
This commit is contained in:
Xavier Morel 2011-12-12 17:26:43 +01:00
parent ca292d50e7
commit 525b24f997
2 changed files with 0 additions and 2 deletions

View File

@ -1121,7 +1121,6 @@ openerp.web.WebClient = openerp.web.Widget.extend(/** @lends openerp.web.WebClie
this.action_manager.do_action(action);
},
do_action: function(action) {
console.log("Action",action);
if(action.type === "ir.ui.menu") {
this.do_reload();
this.rpc('/web/menu/action', {'menu_id': action.menu_id}, this.menu.on_menu_action_loaded);

View File

@ -392,7 +392,6 @@ openerp.web_dashboard.ApplicationTiles = openerp.web.Widget.extend({
var domain = [['application','=',true], ['state','=','installed'], ['name', '!=', 'base']];
var ds = new openerp.web.DataSetSearch(this, 'ir.module.module',{},domain);
ds.read_slice(['id'], {}, function(result) {
console.log(result);
if(result.length) {
self.on_installed_database();
} else {