Skip to content

Commit

Permalink
commenting out advanced option
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca Murphey committed Aug 22, 2010
1 parent 06ac10d commit 9714b42
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions www/myApp/base.js
@@ -1,4 +1,3 @@
/*
dojo.provide('myApp.base');

// specify the file's dependencies
Expand All @@ -14,12 +13,13 @@ dojo.ready(function() {
.placeAt(dojo.body());
});

/*
alternate version if we only want to load
doohickey under certain circumstances,
and don't want it in our base layer
*/
dojo.provide('myApp.base');
dojo.require('myApp.Settings');
dojo.require('myApp.Thinger');
dojo.addOnLoad(function() {
Expand All @@ -33,4 +33,5 @@ if (pageNeedsDoohickey) {
new myApp.Doohickey({ awesome : true })
.placeAt(dojo.body());
});
}
}
*/

0 comments on commit 9714b42

Please sign in to comment.