[FIX] remove debugging crap
authorAntony Lesuisse <al@openerp.com>
Fri, 23 Sep 2011 16:38:03 +0000 (18:38 +0200)
committerAntony Lesuisse <al@openerp.com>
Fri, 23 Sep 2011 16:38:03 +0000 (18:38 +0200)
bzr revid: al@openerp.com-20110923163803-b4bjtzzkat0qpyot

addons/web/static/src/js/chrome.js

index 7a48c00..12a9c47 100644 (file)
@@ -1025,7 +1025,6 @@ openerp.web.WebClient = openerp.web.Widget.extend(/** @lends openerp.web.WebClie
     },
     do_url_set_hash: function(url) {
         if(!this.url_external_hashchange) {
-            console.log("url set #hash to",url);
             this.url_internal_hashchange = true;
             jQuery.bbq.pushState(url);
         }
@@ -1033,10 +1032,8 @@ openerp.web.WebClient = openerp.web.Widget.extend(/** @lends openerp.web.WebClie
     on_url_hashchange: function() {
         if(this.url_internal_hashchange) {
             this.url_internal_hashchange = false;
-            console.log("url jump to FLAG OFF");
         } else {
             var url = jQuery.deparam.fragment();
-            console.log("url jump to",url);
             this.url_external_hashchange = true;
             this.action_manager.on_url_hashchange(url);
             this.url_external_hashchange = false;