From 4755454c2a7cbb37aab3ca29978fa7ac561ec9f6 Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Thu, 18 Oct 2012 22:31:18 +0200 Subject: [PATCH] [FIX] remove console.log bzr revid: al@openerp.com-20121018203118-ufstntp8wshs3fjj --- addons/web/static/src/js/corelib.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/web/static/src/js/corelib.js b/addons/web/static/src/js/corelib.js index 8a5e83d0d53..6ecbfdd01ac 100644 --- a/addons/web/static/src/js/corelib.js +++ b/addons/web/static/src/js/corelib.js @@ -439,7 +439,6 @@ instance.web.CallbackEnabledMixin = _.extend({}, instance.web.PropertiesMixin, { for (var name in this) { if(typeof(this[name]) == "function") { if((/^on_|^do_/).test(name)) { - console.log("Proxyfy,",name); this[name] = callback_maker(this[name]); } }