Comment out console.log

This commit is contained in:
David Kaltschmidt
2015-11-09 13:00:44 +01:00
parent f7c75f9cd3
commit 5cfa193b8d

View File

@@ -5,7 +5,7 @@ const AppDispatcher = new flux.Dispatcher();
AppDispatcher.dispatch = _.wrap(flux.Dispatcher.prototype.dispatch, function(func) {
const args = Array.prototype.slice.call(arguments, 1);
console.log(args[0]);
// console.log(args[0]);
func.apply(this, args);
});