Browse Source

Removed debug.

pull/186/head
Simon Eisenmann 10 years ago
parent
commit
c188dc3755
  1. 1
      static/js/directives/chat.js

1
static/js/directives/chat.js

@ -249,7 +249,6 @@ define(['jquery', 'underscore', 'text!partials/chat.html', 'text!partials/chatro
subscope.sendChat = function(to, message, status, mid, noloop) { subscope.sendChat = function(to, message, status, mid, noloop) {
//console.log("send chat", to, scope.peer); //console.log("send chat", to, scope.peer);
if (message && message.length > maxMessageSize) { if (message && message.length > maxMessageSize) {
console.log("XXXXXXX", message.length);
return mid; return mid;
} }
var peercall = mediaStream.webrtc.findTargetCall(to); var peercall = mediaStream.webrtc.findTargetCall(to);

Loading…
Cancel
Save