removed console.log

This commit is contained in:
ashu8912 2020-01-29 16:12:08 +05:30
parent 8545a3b7ce
commit 5891b3b77a

View file

@ -273,7 +273,6 @@ class Editor extends React.Component {
const currentPosition = this._cm.doc.getCursor();
if (mode === 'javascript') {
this._cm.doc.setValue(beautifyJS(this._cm.doc.getValue(), beautifyOptions));
console.log('beautifying');
} else if (mode === 'css') {
this._cm.doc.setValue(beautifyCSS(this._cm.doc.getValue(), beautifyOptions));
} else if (mode === 'htmlmixed') {