diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index fa3d1d037a7..42f21996081 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -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); diff --git a/addons/web_dashboard/static/src/js/dashboard.js b/addons/web_dashboard/static/src/js/dashboard.js index a46ffdf5fba..aedbe0f26b3 100644 --- a/addons/web_dashboard/static/src/js/dashboard.js +++ b/addons/web_dashboard/static/src/js/dashboard.js @@ -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 {