Skip to content

Commit

Permalink
changed unfollow wording
Browse files Browse the repository at this point in the history
  • Loading branch information
caleywoods committed Mar 27, 2011
1 parent a437d42 commit db690bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/js/users.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(function() {
$(document).ready(function() {
return $(".unfollow").click(function() {
return confirm("Are you sure you want to unfollow this this user?");
return confirm("Are you sure you want to unfollow this user?");
});
});
}).call(this);
2 changes: 1 addition & 1 deletion src/users.coffee
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
$(document).ready ->
$(".unfollow").click ->
confirm "Are you sure you want to unfollow this this user?"
confirm "Are you sure you want to unfollow this user?"

0 comments on commit db690bb

Please sign in to comment.