From 7eaf9899f6cfc79a75cacd9f4a381bc3766dcdc1 Mon Sep 17 00:00:00 2001 From: Emanuel Schuetze Date: Sat, 28 Apr 2012 22:32:33 +0200 Subject: [PATCH] Minor code comment changes. --- openslides/projector/templates/projector/control.html | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/openslides/projector/templates/projector/control.html b/openslides/projector/templates/projector/control.html index 20670f311..bdad2ed49 100644 --- a/openslides/projector/templates/projector/control.html +++ b/openslides/projector/templates/projector/control.html @@ -21,22 +21,19 @@ $( "#countdown_play" ).show(); $( "#countdown_stop" ).hide(); } - return true; }; function spinCount(delta) { var count = parseInt($( "#countdown_time" ).val()); - if (count + delta < 0) { delta = 0; } - $( "#countdown_time" ).val(count + delta); return false; }; - // function that writes the list order to a cookie + // function that writes the portlet list order to a cookie function saveOrder() { $(".column").each(function(index, value){ 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() { $(".column").each(function(index, value) { var colid = value.id;