AdelaFoofur82

Results 2 issues of AdelaFoofur82

In previous version nested then didn't work at expected: ``` javascript context.load("templates/home.template" ).then(function(){ context.log("1"); this.load("templates/home.template" ).then(function(){ context.log("2"); this.load("templates/home.template" ).then(function(){ context.log("3"); this.load("templates/home.template" ).then(function(){ context.log("3a"); }).then(function(){ context.log("3b"); }); }); }).then(function(){ context.log("4"); });...