mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-22 02:10:42 +00:00
Merge branch 'loader' of github.com:280north/cappuccino into loader
This commit is contained in:
@@ -31,7 +31,7 @@ require("file");
|
||||
|
||||
cwd: function()
|
||||
{
|
||||
return FILE.dirname(window.location.pathname);
|
||||
return FILE._cwd;
|
||||
},
|
||||
|
||||
normal: function(/*String*/ aPath)
|
||||
@@ -101,6 +101,14 @@ require("file");
|
||||
return FILE.normal(aPath).split("/");
|
||||
}
|
||||
}
|
||||
|
||||
var DOMBaseElement = document.getElementsByTagName("base")[0];
|
||||
|
||||
if (DOMBaseElement)
|
||||
FILE._cwd = FILE.dirname(DOMBaseElement.getAttribute("href"));
|
||||
else
|
||||
FILE._cwd = FILE.dirname(window.location.pathname);
|
||||
|
||||
#endif
|
||||
|
||||
StaticResourceNode.FileType = 0;
|
||||
|
||||
Reference in New Issue
Block a user