Commit 26d56afa authored by chriseth's avatar chriseth Committed by GitHub

Merge pull request #245 from ethereum/load-offline-fix

Fix offline loading - catch all errors
parents 719a77ad f12928da
......@@ -552,15 +552,7 @@ var run = function () {
loadVersion($('#versionSelector').val());
});
$.getJSON('https://ethereum.github.io/solc-bin/bin/list.json', function (data, status) {
// loading failed for some reason, fall back to local compiler
if (status !== 'success') {
$('#versionSelector').append(new Option('latest local version', 'builtin'));
loadVersion('builtin');
return;
}
$.getJSON('https://ethereum.github.io/solc-bin/bin/list.json').done(function (data) {
function buildVersion (build) {
if (build.prerelease && build.prerelease.length > 0) {
return build.version + '-' + build.prerelease;
......@@ -602,6 +594,11 @@ var run = function () {
}
loadVersion(selectedVersion);
}).fail(function (xhr, text, err) {
// loading failed for some reason, fall back to local compiler
$('#versionSelector').append(new Option('latest local version', 'builtin'));
loadVersion('builtin');
});
storage.sync();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment