Merge pull request #202 from ethereum/chriseth-patch-1

Correctly fall back to soljson-latest in the offline case.
pull/1/head
chriseth 9 years ago committed by GitHub
commit aad0b894f0
  1. 6
      src/app.js

@ -511,9 +511,9 @@ var run = function () {
latestRelease = release;
}
}
if (latestRelease === null) {
latestRelease = 'soljson-latest.js';
}
}
if (latestRelease === null) {
latestRelease = 'soljson-latest.js';
}
loadVersion(queryParams.get().version || latestRelease);
} else {

Loading…
Cancel
Save