Mising semicolons

This commit is contained in:
Lim Chee Aun 2013-12-04 23:43:36 +08:00
parent 630ff09db2
commit c482110f0b

View File

@ -116,7 +116,7 @@ h1{
}, },
start: function(){ start: function(){
life.loadConfig(function(config){ life.loadConfig(function(config){
life.config = life.utils.extend(life.config, config) life.config = life.utils.extend(life.config, config);
if (life.config.customStylesheetURL) life.injectStylesheet(life.config.customStylesheetURL); if (life.config.customStylesheetURL) life.injectStylesheet(life.config.customStylesheetURL);
life.fetch(function(response){ life.fetch(function(response){
@ -288,7 +288,7 @@ h1{
}); });
life.$el.innerHTML = html; life.$el.innerHTML = html;
} }
} };
life.start(); life.start();
})(); })();