From f9a735be55b3e80f0fd0b7dfc95a86c3a84b13e8 Mon Sep 17 00:00:00 2001 From: Simon Eisenmann Date: Wed, 10 Dec 2014 12:35:18 +0100 Subject: [PATCH] Moved webrtc adapter to base as it does not work in strict mode. --- static/js/base.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/js/base.js b/static/js/base.js index 12b524d3..f3515d1c 100644 --- a/static/js/base.js +++ b/static/js/base.js @@ -19,7 +19,6 @@ * */ -"use strict"; define([ // Helper module to put non dependency base libraries together. 'modernizr', 'moment', @@ -33,4 +32,5 @@ define([ // Helper module to put non dependency base libraries together. 'rAF', 'humanize', 'sha', - 'sjcl'], function() {}); + 'sjcl', + 'webrtc.adapter'], function() {});