[Dojo-checkins] r750 -

dojo-checkins at dojotoolkit.org dojo-checkins at dojotoolkit.org
Mon Jun 20 11:15:43 PDT 2005


Author: alex
Date: Mon Jun 20 11:15:41 2005
New Revision: 750

Added:
   __package__.js
Log:
there's no good reason that web app developers should have to switch between the bootstrap*.js style and the __package__.js style, so lets stop being lazy


Added: __package__.js
==============================================================================
--- (empty file)
+++ __package__.js	Mon Jun 20 11:15:41 2005
@@ -0,0 +1,7 @@
+(function(){
+	var tmps = ["bootstrap1.js", "hostenv_browser.js", "bootstrap2.js"];
+	var root = ((this["djConfig"])&&(djConfig["baseScriptUri"])) ?  djConfig.baseScriptUri : "";
+	for(var x in tmps){
+		document.write("<script type='text/javascript' src='"+root+"/src/"+tmps[x]+"'></script>");
+	}
+})();


More information about the Dojo-checkins mailing list