Generates app bundle file

This commit is contained in:
hristoterezov 2015-02-02 20:00:45 +02:00
parent 4447e5dac6
commit ffb1d6ea17
2 changed files with 3 additions and 2 deletions

View File

@ -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=3"></script>
<script src="libs/app.bundle.js?v=4"></script>
<script src="analytics.js?v=1"></script><!-- google analytics plugin -->
<link rel="stylesheet" href="css/font.css?v=6"/>

View File

@ -12226,7 +12226,7 @@ JingleSession.prototype.switchStreams = function (new_stream, oldStream, success
self.peerconnection.addStream(new_stream);
}
RTC.switchVideoStreams(new_stream, oldStream);
APP.RTC.switchVideoStreams(new_stream, oldStream);
// Conference is not active
if(!oldSdp || !self.peerconnection) {
@ -12644,6 +12644,7 @@ JingleSession.prototype.remoteStreamAdded = function (data) {
}
module.exports = JingleSession;
},{"../../service/RTC/RTCBrowserType":77,"./SDP":47,"./SDPDiffer":48,"./SDPUtil":49,"./TraceablePeerConnection":50}],47:[function(require,module,exports){
/* jshint -W117 */
var SDPUtil = require("./SDPUtil");