fixes default proxy paths.

This commit is contained in:
andygup 2014-02-26 13:41:45 -07:00
parent a85dfdb566
commit 6eb12ebd12
3 changed files with 3 additions and 3 deletions

View File

@ -59,7 +59,7 @@ define([
layer.offline = {
online: true,
store: new DbAttachmentStore(),
proxyPath: "../../lib/proxy.php"
proxyPath: "../lib/resource-proxy/proxy.php"
//proxyPath: "http://localhost/proxy/proxy.php"
};

View File

@ -43,7 +43,7 @@ define([
layer.offline = {
online: true,
store: new DbStore(),
proxyPath: "../../lib/proxy.php"
proxyPath: "../lib/resource-proxy/proxy.php"
};
if( /*false &&*/ layer.offline.store.isSupported() )

View File

@ -34,7 +34,7 @@ describe("offline enabler library", function()
expect(g_basemapLayer.offline).toEqual(jasmine.any(Object));
expect(g_basemapLayer.offline.store).toEqual(jasmine.any(Object));
g_basemapLayer.offline.proxyPath = "../lib/proxy.php";
g_basemapLayer.offline.proxyPath = "../lib/resource-proxy/proxy.php";
done();
});
});