diff --git a/index.html b/index.html
index d5f2a6cec4..3e78fb3466 100644
--- a/index.html
+++ b/index.html
@@ -35,6 +35,7 @@ THE SOFTWARE.
+
@@ -94,23 +95,22 @@ THE SOFTWARE.
// ----------------- version selector-------------
- $.get('bin/list.txt').then(function(versionList) {
- $('option', '#versionSelector').remove();
- $.each(versionList.split('\n'), function(i, file) {
- if (file) {
+ // var soljsonSources is provided by bin/list.js
+ $('option', '#versionSelector').remove();
+ $.each(soljsonSources, function(i, file) {
+ if (file) {
var version = file.replace(/soljson-(.*).js/, "$1");
$('#versionSelector').append(new Option(version, file));
- }
- });
- $('#versionSelector').change(function() {
- Module = null;
- compileJSON = null;
- var script = document.createElement('script');
- script.type = 'text/javascript';
- script.src = 'bin/' + $('#versionSelector').val();
- $('head').append(script);
- onCompilerLoaded();
- });
+ }
+ });
+ $('#versionSelector').change(function() {
+ Module = null;
+ compileJSON = null;
+ var script = document.createElement('script');
+ script.type = 'text/javascript';
+ script.src = 'bin/' + $('#versionSelector').val();
+ $('head').append(script);
+ onCompilerLoaded();
});
// ----------------- resizeable ui ---------------