Improved Javascript coding style

This commit is contained in:
Marcin Kurczewski
2014-09-08 22:02:28 +02:00
parent a5c89bc48e
commit 553c33b860
27 changed files with 180 additions and 140 deletions

View File

@ -1,6 +1,6 @@
var App = App || {};
App.Promise = (function(jQuery) {
App.Promise = function(jQuery) {
function make(callback)
{
@ -23,6 +23,6 @@ App.Promise = (function(jQuery) {
waitAll: waitAll,
};
});
};
App.DI.registerSingleton('promise', App.Promise);