diff --git a/capsule-prototype/index.html b/capsule-prototype/index.html
index 9e90a1bc5b3936e84c3348e483f9056ebf76cbd3..bc1796f105bf35cd6de401e39802073da033c89f 100644
--- a/capsule-prototype/index.html
+++ b/capsule-prototype/index.html
@@ -186,10 +186,7 @@
 					<textarea class="popupInput" id="popupLinkInput" type="text"></textarea>
 
 					<div class="popupRightItem" id="popupSpeed" title="Speed"></div>
-					<!--<textarea class="popupInput" id="popupSpeedInput" type="text"></textarea>-->
 					<input type='range' min='0' max='4' class='popupInput' id='popupSpeedInput' />
-
-					<!-- <div class="popupRightItem separationHDark editmode"></div> -->
 				</td>
 			</tr>
 		</table>
diff --git a/capsule-prototype/js/online-script.js b/capsule-prototype/js/online-script.js
index 937e7451999f23a95a6817927c2960bb454d3686..53d7f7fc1a0055c192f83af14c7d10db1a28ebe3 100644
--- a/capsule-prototype/js/online-script.js
+++ b/capsule-prototype/js/online-script.js
@@ -1005,13 +1005,6 @@ bgColorLeft = getTagGradientColor(tag);
 	var speed = tag.getMetadata("Rekall->Speed");
 	if((speed)&&(speed!="")) $("#popupSpeed").html(get_str_for_speed(speed)).removeClass("empty");
 	else $("#popupSpeed").html("+ Set video speed during this annotation").addClass("empty");
-	/*
-	if ((speed)&&(speed!="")) {
-		$("#popupSpeed").removeClass("empty")
-		$("popupSpeedInput").val(Number(speed));
-		$("popupSpeedInput").css('display', 'inline-block');
-	} else $("#popupSpeed").html("+ Set video speed during this annotation").addClass("empty");
-	*/
 
 	var comments = tag.getMetadata("Rekall->Comments");
 	if((comments)&&(comments!="")) $("#popupLegende").html(comments).removeClass("empty");