Commit 37f31637 authored by Leo Iannacone's avatar Leo Iannacone

if no distribution received, set None element

parent 638e0b7a
...@@ -25,13 +25,18 @@ function Page_Generic() ...@@ -25,13 +25,18 @@ function Page_Generic()
var update = { var update = {
distributions: function(distributions) { distributions: function(distributions) {
$('#distributions ul').html(''); $('#distributions ul').html('');
distributions.forEach(function (name){ if(distributions.length < 1) {
$('#distributions ul').append('<li id="distribution-' + name +'"><a href="'+ config.paths.distribution + '#'+ name + '">' + name + '</li>'); $('#distributions ul').append('<li><a title="There is no distribution at the moment" onclick="return false">None</li>')
}); }
if (window.location.pathname == config.paths.distribution) { else {
data = Utils.from_hash_to_data() distributions.forEach(function (name){
if (Utils.check_data_distribution(data)) { $('#distributions ul').append('<li id="distribution-' + name +'"><a href="'+ config.paths.distribution + '#'+ name + '">' + name + '</li>');
$("#distributions li[id='distribution-" + data.distribution.name + "']").addClass('active') });
if (window.location.pathname == config.paths.distribution) {
data = Utils.from_hash_to_data()
if (Utils.check_data_distribution(data)) {
$("#distributions li[id='distribution-" + data.distribution.name + "']").addClass('active')
}
} }
} }
}, },
......
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