Roo/bootstrap/panel/Content.js
authorjohn <john@roojs.com>
Tue, 28 Nov 2017 05:26:46 +0000 (13:26 +0800)
committerjohn <john@roojs.com>
Tue, 28 Nov 2017 05:26:46 +0000 (13:26 +0800)
Roo/bootstrap/panel/Content.js

index b51c0f6..453ee00 100644 (file)
@@ -388,16 +388,12 @@ panel.load({
             
             switch (true) {
                 case (k.indexOf('xs') >= 0):
-                    Roo.log('index of xs: '+k.indexOf('xs'));
                     t += '<span class="visible-xs">' + this.title[k] + '</span>';
                 case (k.indexOf('sm') >= 0):
-                    Roo.log('index of sm: '+k.indexOf('sm'));
                     t += '<span class="visible-sm">' + this.title[k] + '</span>';
                 case (k.indexOf('md') >= 0):
-                    Roo.log('index of md: '+k.indexOf('md'));
                     t += '<span class="visible-md">' + this.title[k] + '</span>';
                 case (k.indexOf('lg') >= 0):
-                    Roo.log('index of lg: '+(k.indexOf('lg')>=0));
                     t += '<span class="visible-lg">' + this.title[k] + '</span>';
                     break;
             }