mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-10 12:47:13 +00:00
When loading modules escape "+" in case they're converted to spaces later.
Updated to latest Narwhal and Jack
This commit is contained in:
committed by
Francisco Ryan Tolmasky I
parent
28b387554f
commit
26ebd6bf64
Vendored
+1
-1
Submodule External/jack updated: 44783d128c...ffc5ea4a6e
Vendored
+1
-1
Submodule External/narwhal updated: ce2030aa56...b91ecad8a4
+1
-1
@@ -301,7 +301,7 @@ objj_search.prototype.request = function(aFilePath, aMethod)
|
||||
|
||||
try
|
||||
{
|
||||
request.open("GET", aFilePath, YES);
|
||||
request.open("GET", aFilePath.replace(/\+/g, "%2B"), YES);
|
||||
request.send("");
|
||||
}
|
||||
catch (anException)
|
||||
|
||||
Reference in New Issue
Block a user