Minor code comment changes.

This commit is contained in:
Emanuel Schuetze 2012-04-28 22:32:33 +02:00
parent 64eed5ff22
commit 7eaf9899f6

View File

@ -21,22 +21,19 @@
$( "#countdown_play" ).show(); $( "#countdown_play" ).show();
$( "#countdown_stop" ).hide(); $( "#countdown_stop" ).hide();
} }
return true; return true;
}; };
function spinCount(delta) { function spinCount(delta) {
var count = parseInt($( "#countdown_time" ).val()); var count = parseInt($( "#countdown_time" ).val());
if (count + delta < 0) { if (count + delta < 0) {
delta = 0; delta = 0;
} }
$( "#countdown_time" ).val(count + delta); $( "#countdown_time" ).val(count + delta);
return false; return false;
}; };
// function that writes the list order to a cookie // function that writes the portlet list order to a cookie
function saveOrder() { function saveOrder() {
$(".column").each(function(index, value){ $(".column").each(function(index, value){
var colid = value.id; var colid = value.id;
@ -55,7 +52,7 @@
}); });
} }
// function that restores the list order from a cookie // function that restores the portlet list order from a cookie
function restoreOrder() { function restoreOrder() {
$(".column").each(function(index, value) { $(".column").each(function(index, value) {
var colid = value.id; var colid = value.id;