Fixes issue with the download logs button.

pull/307/head 531
hristoterezov 10 years ago
parent 224dff7481
commit 15db9ca7e4
  1. 2
      index.html
  2. 1699
      libs/app.bundle.js
  3. 3
      modules/xmpp/strophe.jingle.js

@ -19,7 +19,7 @@
<script src="libs/popover.js?v=1"></script><!-- bootstrap tooltip lib -->
<script src="libs/toastr.js?v=1"></script><!-- notifications lib -->
<script src="interface_config.js?v=5"></script>
<script src="libs/app.bundle.js?v=83"></script>
<script src="libs/app.bundle.js?v=84"></script>
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
<link rel="stylesheet" href="css/font.css?v=7"/>
<link rel="stylesheet" href="css/toastr.css?v=1">

File diff suppressed because it is too large Load Diff

@ -328,8 +328,9 @@ module.exports = function(XMPP, eventEmitter)
*/
populateData: function () {
var data = {};
var self = this;
Object.keys(this.sessions).forEach(function (sid) {
var session = this.sessions[sid];
var session = self.sessions[sid];
if (session.peerconnection && session.peerconnection.updateLog) {
// FIXME: should probably be a .dump call
data["jingle_" + session.sid] = {

Loading…
Cancel
Save