Remove console.logs

This commit is contained in:
Berkeley Martinez
2015-11-24 13:51:58 -08:00
parent eec7fff909
commit ce37991c50
4 changed files with 0 additions and 4 deletions

View File

@ -3,7 +3,6 @@ window.common = (function({ $, common = { init: [] }}) {
common.displayTestResults = function displayTestResults(data = []) {
$('#testSuite').children().remove();
data.forEach(({ err = false, text = '' }) => {
console.log('err', err);
var iconClass = err ?
'"ion-close-circled big-error-icon"' :
'"ion-checkmark-circled big-success-icon"';

View File

@ -11,7 +11,6 @@ $(document).ready(function() {
.debounce(750)
.map(() => common.editor.getValue())
.distinctUntilChanged()
.doOnNext(() => console.log('updating value'))
.shareReplay();
// update storage
@ -41,7 +40,6 @@ $(document).ready(function() {
if (err) {
return console.error(err);
}
console.log('updating preview');
},
err => console.error(err)
);

View File

@ -125,7 +125,6 @@ var paths = {
'run-tests-stream',
'show-completion',
'step-challenge',
'test-script-stream',
'update-preview',
'end'
],