Skip to content

Commit

Permalink
followingUsers array rewrote Case-insensitive.
Browse files Browse the repository at this point in the history
  • Loading branch information
flano-yuki authored and cezarsa committed Sep 20, 2010
1 parent 5070dbb commit af289de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion background.html 100755 → 100644
Expand Up @@ -823,7 +823,7 @@
}
_this.followingUsers = _this.followingUsers.concat(users);
_this.followingUsers.sort(function(a, b) {
return a.screen_name.localeCompare(b.screen_name);
return a.screen_name.toUpperCase().localeCompare(b.screen_name.toUpperCase());
});
}, usersIdList);
},
Expand Down

0 comments on commit af289de

Please sign in to comment.