"use strict"; // get all of the releases from versions.json, and use these to populate the // dropdown menu of different releases $(document).ready(function () { // Define versions_json_url in versions.html through a template variable $.getJSON(versions_json_url) .done(function (data) { $.each(data.sort(function (a, b) { return a.version > b.version }), function (i, item) { $('