Rely only on scriptURL when loading images

Reviewed By: @foghina

Differential Revision: D2527119

fb-gh-sync-id: e2a9618f729a2ec03b1959fa13fae46620cc379e
This commit is contained in:
Alex Kotliarskyi
2015-10-12 11:34:27 -07:00
committed by facebook-github-bot-9
parent 5e33dbcfcc
commit 62d0586e59
2 changed files with 2 additions and 9 deletions

View File

@@ -20,10 +20,6 @@ var SourceCode = require('NativeModules').SourceCode;
var _serverURL;
function getDevServerURL() {
if (!__DEV__) {
// In prod we want assets to be loaded from the archive
return null;
}
if (_serverURL === undefined) {
var scriptURL = SourceCode.scriptURL;
var match = scriptURL && scriptURL.match(/^https?:\/\/.*?\//);