Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
JRMaitre committed Aug 8, 2017
2 parents 32222d0 + 37ce17a commit 929e88a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
define(function(require){
define(function(require) {
var $ = require('jquery'),
monster = require('monster');

Expand All @@ -7,7 +7,7 @@ define(function(require){

css: [ 'app' ],

i18n: {
i18n: {
'en-US': { customCss: false },
'fr-FR': { customCss: false },
'ru-RU': { customCss: false }
Expand All @@ -19,7 +19,7 @@ define(function(require){
subscribe: {
},

load: function(callback){
load: function(callback) {
var self = this;

self.initApp(function() {
Expand All @@ -36,7 +36,7 @@ define(function(require){
});
},

render: function(parent){
render: function(parent) {
var self = this,
parent = parent || $('#monster_content');

Expand All @@ -50,7 +50,7 @@ define(function(require){
.append(numberControl);
}
});
},
}
};

return app;
Expand Down

0 comments on commit 929e88a

Please sign in to comment.