You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Harmonize behavior of live chats and requests with respect to actions handling
Fixes#44
Do not open Assistify-tab if running in the mobile app (fixes#41). However, a browser opening the mobile view is likely to open the panel on opening the room still.
$('.flex-tab-container:not(.opened) .flex-tab-bar :not(.hidden) .icon-lightbulb').click();//there is no ID of the tabbar's Button which we could use so far
6
+
if(Meteor.isCordova){
7
+
return;//looks awkward on mobile if panel is opened by default
8
+
}
9
+
10
+
if(subscription){//no subscription: if a user joins a room without being subscribed to it, e. g. in live chat
$('.flex-tab-container:not(.opened) .flex-tab-bar :not(.hidden) .icon-lightbulb').click();//there is no ID of the tabbar's Button which we could use so far
0 commit comments