moved to xcode 4

This commit is contained in:
Jeena Paradies 2011-03-12 15:41:08 +01:00
parent 7b4adc0f63
commit 526a9ba0cc
46 changed files with 8146 additions and 1764 deletions

View file

@ -54,6 +54,16 @@ Twittia.prototype.getItem = function(status) {
}
var template = this.getTemplate();
/*
template.item.id = "id-" + status.id_str;
template.item.onmousedown = function(e) { if(e.button == 2) {
var target = e.target;
while(target.nodeName != "LI" && target != null) {
target = target.parentNode;
}
alert(target.id);
}}*/
template.reply_to.onclick = function() { replyTo(status.user.screen_name, status.id_str); return false; }
template.retweet.onclick = function() { template.retweet.className = "hidden"; _this.retweet(status.id_str, template.item); return false; }