Skip to content

Commit

Permalink
[#5665] Remove console.log debug references in JS
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaun McCormick committed Sep 7, 2011
1 parent a6e2203 commit d074553
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions core/docs/changelog.txt
Expand Up @@ -2,6 +2,7 @@
This file shows the changes in recent releases of MODX. The most current release is usually the
development release, and is only shown to give an idea of what's currently in the pipeline.

- [#5665] Remove console.log debug references in JS
- Add Media Sources, which allow abstraction of file management in MODX
- [#2737] Centralize logic for changing Context of modResource Children
- [#5068] Move token check for new resources below error validation in processor to prevent bogus duplicate resource issue
Expand Down
2 changes: 1 addition & 1 deletion manager/assets/modext/widgets/element/modx.panel.tv.js
Expand Up @@ -361,7 +361,7 @@ Ext.extend(MODx.panel.TVInputProperties,MODx.Panel,{
}
,scripts: true
});
} catch(e) {console.log(e);}
} catch(e) {MODx.debug(e);}
}
});
Ext.reg('modx-panel-tv-input-properties',MODx.panel.TVInputProperties);
Expand Down
Expand Up @@ -43,7 +43,6 @@ MODx.grid.ActionDom = function(config) {
,sortable: true
,editor: { xtype: 'modx-combo-rule-type' ,renderer: true }
,renderer: function(v,md) {
console.log(v);
return Ext.util.Format.htmlEncode(v);
}
},{
Expand Down
4 changes: 2 additions & 2 deletions manager/assets/modext/workspace/lexicon/lexicon.grid.js
Expand Up @@ -398,7 +398,7 @@ MODx.window.ExportLexicon = function(config) {
cle.store.baseParams['namespace'] = cb.getValue();
cle.setValue('');
cle.store.reload();
} else {console.log('cle not found');}
} else {MODx.debug('cle not found');}
},scope:this}
}
},{
Expand Down Expand Up @@ -454,7 +454,7 @@ MODx.window.LexiconEntryCreate = function(config) {
cle.store.baseParams['namespace'] = cb.getValue();
cle.setValue('');
cle.store.reload();
} else {console.log('cle not found');}
} else {MODx.debug('cle not found');}
},scope:this}
}
},{
Expand Down

0 comments on commit d074553

Please sign in to comment.