Renames getLargeVideoJid to getLargeVideoResource and updates app.bundle.js.

This commit is contained in:
paweldomas 2015-08-11 13:12:55 +02:00
parent 2bea2eec74
commit b680ecd2ff
4 changed files with 19621 additions and 19653 deletions

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -175,8 +175,8 @@ function registerListeners() {
// selections so that it can do adaptive simulcast, // selections so that it can do adaptive simulcast,
// we want the notification to trigger even if userJid is undefined, // we want the notification to trigger even if userJid is undefined,
// or null. // or null.
var userJid = APP.UI.getLargeVideoJid(); var userResource = APP.UI.getLargeVideoResource();
eventEmitter.emit(UIEvents.SELECTED_ENDPOINT, userJid); eventEmitter.emit(UIEvents.SELECTED_ENDPOINT, userResource);
}); });
APP.statistics.addAudioLevelListener(function(jid, audioLevel) { APP.statistics.addAudioLevelListener(function(jid, audioLevel) {
var resourceJid; var resourceJid;
@ -190,7 +190,7 @@ function registerListeners() {
} }
AudioLevels.updateAudioLevel(resourceJid, audioLevel, AudioLevels.updateAudioLevel(resourceJid, audioLevel,
UI.getLargeVideoJid()); UI.getLargeVideoResource());
}); });
APP.desktopsharing.addListener(function () { APP.desktopsharing.addListener(function () {
ToolbarToggler.showDesktopSharingButton(); ToolbarToggler.showDesktopSharingButton();
@ -677,8 +677,8 @@ UI.inputDisplayNameHandler = function (value) {
VideoLayout.inputDisplayNameHandler(value); VideoLayout.inputDisplayNameHandler(value);
}; };
UI.getLargeVideoJid = function() { UI.getLargeVideoResource = function () {
return VideoLayout.getLargeVideoJid(); return VideoLayout.getLargeVideoResource();
}; };
UI.generateRoomName = function() { UI.generateRoomName = function() {

View File

@ -170,7 +170,7 @@ var VideoLayout = (function (my) {
} }
}; };
my.getLargeVideoJid = function () { my.getLargeVideoResource = function () {
return LargeVideo.getResourceJid(); return LargeVideo.getResourceJid();
}; };