Commit 3cb8f70d authored by Leo Iannacone's avatar Leo Iannacone

update comments

parent 846bf134
...@@ -95,16 +95,16 @@ function Page_Generic() ...@@ -95,16 +95,16 @@ function Page_Generic()
li.html($(__get_status_html(status_data)).children()) li.html($(__get_status_html(status_data)).children())
li.attr('id', '') li.attr('id', '')
// This is a chain to have a fadeOut and correctly // This is a chain to have a fadeOut and correctly
// delete package from list. // delete status li from list.
// The first timemout fades out the package. // The first timemout fades out the status element.
setTimeout(function() { setTimeout(function() {
li.children().fadeOut(config.status.delay.fadeOut) li.children().fadeOut(config.status.delay.fadeOut)
// Then resize packages list. // Then resize list.
setTimeout(function() { setTimeout(function() {
li.animate({width: 'toggle'}) li.animate({width: 'toggle'})
}, config.status.delay.fadeOut) }, config.status.delay.fadeOut)
// Finally remove package html // Finally remove status html
// and show idle status if necessary. // and show idle label if necessary.
setTimeout(function() { setTimeout(function() {
li.remove() li.remove()
if ($('#status li').length == 0) if ($('#status li').length == 0)
......
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