X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/efe36f4f1b5df351eeb4d40a54c3900cf9a7079b..f7b9f2577c412532fb29bad0cc9de27351d7daaf:/src/fnpjs/runner.js diff --git a/src/fnpjs/runner.js b/src/fnpjs/runner.js index 66e0b68..0da2916 100644 --- a/src/fnpjs/runner.js +++ b/src/fnpjs/runner.js @@ -1,5 +1,7 @@ define(['libs/jquery', 'libs/underscore'], function($, _) { +'use strict'; + var Runner = function(app, modules) { function getModuleInstance(moduleName) { @@ -33,7 +35,6 @@ var Runner = function(app, modules) { }; this.publish = function(eventName) { - console.log(moduleName + ': ' + eventName); var eventArgs = Array.prototype.slice.call(arguments, 1); _.each(eventListeners, function(listenerModuleName) { var listener = moduleInstances[listenerModuleName];