Created
June 18, 2015 22:26
-
-
Save kfranqueiro/7e3c9594918dbc3bea32 to your computer and use it in GitHub Desktop.
Revisions
-
kfranqueiro created this gist
Jun 18, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ <!DOCTYPE html> <html> <body> <script> var dojoConfig = { async: true, baseUrl: "", tlmSiblingOfDojo: false }; </script> <script src="//ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js"></script> <script> require(['testModule'], function() { console.log('all loaded'); }); </script> </body> </html> This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ define([], function () { console.log('in factory'); }); console.log('after factory');