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

if no distribution received, set None element

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