[ create a new paste ] login | about

Link: http://codepad.org/lF2pIisA    [ raw code | fork ]

C, pasted on Sep 14:
1
2
3
4
5
6
7
8
9
10
		document.body.onmousedown = function() {
			ctx.clearRect(h.x, h.y, h.w, h.h);
			ctx.fillStyle = "#ffffff";
			ctx.fillText("name", h.x + 3, h.y + 100);
			h.x = cx;
			h.y = cy;
			ctx.fillStyle = "#000000";
			ctx.fillRect(h.x, h.y, h.w, h.h);
			ctx.fillText("name", h.x + 3, h.y + 100);
		}


Create a new paste based on this one


Comments: