Skip to content

Commit 9858aad

Browse files
committed
Removed Alert. Need to fix mobile rendering error
1 parent 2fb8b3d commit 9858aad

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

js/rtc-controller.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,6 @@ var CONTROLLER = window.CONTROLLER = function(phone, stream){
221221
callAuth(m.data);
222222
break;
223223
case "userJoin":
224-
alert(isStream);
225224
if (isStream) add_to_stream(m.data); // JOIN STREAM HERE!
226225
else add_to_group(m.data);
227226
break;

streams.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
session.ended(function(session) { addLog(session.number + " has left."); });
122122
});
123123
ctrl.streamPresence(function(m){
124-
console.log(m);
124+
$('#here-now').html(m.occupancy+'');
125125
addLog(m.occupancy + " currently watching.");
126126
});
127127
return false;

0 commit comments

Comments
 (0)