Local path should now work correctly.
This commit is contained in:
Nir Azuelos
2013-04-16 00:27:54 +03:00
parent 5e0ed82e71
commit bd31c7a4c3

View File

@@ -214,7 +214,7 @@ function extractUrlParts(url, baseUrl) {
if (!baseUrlParts) {
throw new Error("Could not parse page url - '"+baseUrl+"'");
}
urlParts[1] = baseUrlParts[1];
urlParts[1] = baseUrlParts[1] || "";
if (!urlParts[2]) {
urlParts[3] = baseUrlParts[3] + urlParts[3];
}