Pman.Gnumeric.js
[Pman.Core] / Pman.Include.js
index 835eb53..3959cb4 100644 (file)
@@ -7,15 +7,14 @@
 
 Pman.Include = function(sp) {
     
-    Pman.Include.script(sp, true)
-    
+    Pman.Include.script(sp, true);     
      
-)
+}
 
 Pman.Include.cached = function(sp) {
-    Pman.Include.script(sp, false)
+    Pman.Include.script(sp, false);
      
-)
+}
 
 Pman.Include.script = function(sp,cached) {
     var head = document.getElementsByTagName("head")[0];
@@ -23,10 +22,10 @@ Pman.Include.script = function(sp,cached) {
     
     var script = document.createElement("script");
     script.setAttribute("src",  rootURL + sp    +
-              ( cached ? '' :     '?ts=' + Math.random() ));
+              ( cached ? '' :     '?ts=' + Math.random() )
+            );
     script.setAttribute("type", "text/javascript");
     //script.setAttribute("id", trans.scriptId);
     head.appendChild(script);
-    
-    Roo.get(documen.body).appendChild()
-)
\ No newline at end of file
+     
+}
\ No newline at end of file