Merge branch 'release/0.0.11'

This commit is contained in:
Ghislain Loaec 2015-08-05 08:34:14 +02:00
commit d8ea895983
1 changed files with 2 additions and 2 deletions

View File

@ -210,7 +210,7 @@ var app = {
// Patch path to local in manifest response
var manifestResponse = response.replace(/(['"\(])\/?(assets\/[^'"\)]*)(['"\)])/g, function(match, q1, path, q2){
return q1+rootPath+match+q2;
return q1+rootPath+path+q2;
});
// Callback
@ -219,7 +219,7 @@ var app = {
});
} else {
var manifestResponse = response.replace(/(['"\(])\/?(assets\/[^'"\)]*)(['"\)])/g, function(match, q1, path, q2){
return q1+rootPath+match+q2;
return q1+DEBUG_WWW_URL+path+q2;
});
cb(manifestResponse);
}