Skip to content

Commit

Permalink
Added quality layers to subscribers video chart
Browse files Browse the repository at this point in the history
  • Loading branch information
aalonsog committed Jun 29, 2017
1 parent fec8cd8 commit baeed35
Show file tree
Hide file tree
Showing 5 changed files with 571 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/javascripts/graphs.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var newDataSub = function(subID, data) {
dataSub = {FLVideo: [], FLAudio: [], BW: []};
drawFLVideoChart(subID);
drawFLAudioChart(subID);
drawBWChart(subID);
// drawBWChart(subID);
sub_modal_now = subID;
return;
} else if (sub_modal_now == subID) {
Expand All @@ -75,7 +75,7 @@ var newDataSub = function(subID, data) {
if (data.BW) {
var BW = data.BW;
var newDataBW = {date: date, val: BW};
updateBWChart(newDataBW);
// updateBWChart(newDataBW);
}


Expand Down
Loading

0 comments on commit baeed35

Please sign in to comment.