1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-24 07:39:43 +02:00

removed console.log statements

This commit is contained in:
Harvey Kandola 2017-03-10 12:15:37 +00:00
parent c5b80071f1
commit 7ad8cd8370
2 changed files with 581 additions and 583 deletions

View file

@ -38,7 +38,6 @@ export default Ember.Component.extend({
if (item.mode === this.get('codeSyntax')) {
this.set('codeSyntax', i);
console.log(this.get('codeSyntax'));
}
});
},
@ -67,7 +66,6 @@ export default Ember.Component.extend({
let syntax = this.get("codeSyntax");
if (is.not.undefined(syntax)) {
console.log(syntax);
CodeMirror.autoLoadMode(editor, syntax.mode);
editor.setOption("mode", syntax.mode);
}

File diff suppressed because one or more lines are too long