Skip to content

Commit

Permalink
loading text
Browse files Browse the repository at this point in the history
  • Loading branch information
jchris committed Sep 2, 2010
1 parent c06795b commit e7784fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion evently/items/user/selectors/a[href=#more]/click.js
@@ -1,6 +1,7 @@
function(e) {
var name = e.data.args[1].screen_name.toLowerCase()
, app = $$(this).app
, a = $(this)
, app = $$(a).app
;
app.db.saveDoc({
twebz : {
Expand All @@ -10,6 +11,10 @@ function(e) {
couch_user : $$("#account").userCtx.name,
twitter_acct : $.cookie("twitter_acct")
}
}, {
success : function() {
a.text("Loading...");
}
});
return false;
};

0 comments on commit e7784fa

Please sign in to comment.