prevent dragging of user images

This commit is contained in:
Samuel Reis 2010-09-21 15:31:41 +02:00
parent 8ef7a3148e
commit 675f92534b

View file

@ -118,6 +118,7 @@ Twittia.prototype.getTemplate = function() {
var image = document.createElement("img");
image.className = "image";
image.onmousedown = function(e) { e.preventDefault(); };
item.appendChild(image);
var image_username = a.cloneNode();