Remove the old and now unused flat nicklist

This commit is contained in:
Tor Hveem 2014-04-25 21:05:20 +02:00
commit 921e28d0e2
3 changed files with 2 additions and 40 deletions

View file

@ -3,24 +3,6 @@
*/
var IrcUtils = {
/**
* Get a new version of a nick list, sorted alphabetically by lowercase nick.
*
* @param nickList Original nick list
* @return Nick list sorted alphabetically by lowercase nick
*/
_ciSearchNickList: function(nickList) {
var newList = [];
nickList.forEach(function(nick) {
newList.push(nick);
});
newList.sort(function(a, b) {
return a.toLowerCase() < b.toLowerCase() ? -1 : 1;
});
return newList;
},
/**
* Get a new version of a nick list, sorted by last speaker
*