From 09c605671a0b72c15533b71aee0ec9635ef1752d Mon Sep 17 00:00:00 2001 From: psychobunny Date: Mon, 21 Sep 2015 18:26:35 -0400 Subject: [PATCH] fix for missing notifications and chats on mobile menu --- lib/persona.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/persona.js b/lib/persona.js index be3fdff..1222b7b 100644 --- a/lib/persona.js +++ b/lib/persona.js @@ -176,7 +176,7 @@ $(document).ready(function() { if (!slideout.isOpen()) { require(['chat', 'notifications'], function(chat, notifications) { - chat.loadChats($('#menu [data-section="chats"] ul')); + chat.loadChatsDropdown($('#menu [data-section="chats"] ul')); notifications.loadNotifications($('#menu [data-section="notifications"] ul')); }); }