From daa913fecd4991c20d3bfb5ead3d30e39c3866d1 Mon Sep 17 00:00:00 2001 From: Cory Chaplin Date: Sun, 2 Mar 2014 19:58:18 +0100 Subject: [PATCH] Fix css reference --- client/src/applets/chanlist.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/applets/chanlist.js b/client/src/applets/chanlist.js index a265b32..8fb67bf 100644 --- a/client/src/applets/chanlist.js +++ b/client/src/applets/chanlist.js @@ -50,16 +50,16 @@ switch (this.order) { case 'user_desc': default: - $('.users_title').append(icon_desc); + this.$('.users_title').append(icon_desc); break; case 'user_asc': - $('.users_title').append(icon_asc); + this.$('.users_title').append(icon_asc); break; case 'name_asc': - $('.channel_name_title').append(icon_asc); + this.$('.channel_name_title').append(icon_asc); break; case 'name_desc': - $('.channel_name_title').append(icon_desc); + this.$('.channel_name_title').append(icon_desc); break; } -- 2.25.1