hgweb: remove unused colorPart() from mercurial.js
authorAnton Shestakov <av6@dwimlabs.net>
Sat, 24 Oct 2015 09:47:33 +0100
changeset 26867 ad443e8d9334
parent 26866 0f75461a9698
child 26868 a2aa39a725a1
hgweb: remove unused colorPart() from mercurial.js Looks like the function wasn't ever used since its introduction in 0dba955c2636, since setColor() below always used "rgb(255, 255, 255)" notation which doesn't need hex digits.
mercurial/templates/static/mercurial.js
--- a/mercurial/templates/static/mercurial.js	Sun Oct 18 18:49:59 2015 +0200
+++ b/mercurial/templates/static/mercurial.js	Sat Oct 24 09:47:33 2015 +0100
@@ -50,18 +50,6 @@
 		this.cell_height = this.box_size;
 	}
 
-	function colorPart(num) {
-		num *= 255
-		num = num < 0 ? 0 : num;
-		num = num > 255 ? 255 : num;
-		var digits = Math.round(num).toString(16);
-		if (num < 16) {
-			return '0' + digits;
-		} else {
-			return digits;
-		}
-	}
-
 	this.setColor = function(color, bg, fg) {
 
 		// Set the colour.