From dc2a60edbb16528b74db2c5f3b258ff8a466e626 Mon Sep 17 00:00:00 2001 From: damencho Date: Tue, 10 Nov 2015 16:40:25 -0600 Subject: [PATCH] Fixes long lines. --- modules/statistics/statistics.js | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/modules/statistics/statistics.js b/modules/statistics/statistics.js index 1c0c01913..91908f0de 100644 --- a/modules/statistics/statistics.js +++ b/modules/statistics/statistics.js @@ -119,11 +119,15 @@ var statistics = { APP.xmpp.addListener(RTCEvents.CREATE_ANSWER_FAILED, function (e) { CallStats.sendCreateAnswerFailed(e); }); - APP.xmpp.addListener(RTCEvents.SET_LOCAL_DESCRIPTION_FAILED, function (e) { - CallStats.sendSetLocalDescFailed(e); + APP.xmpp.addListener( + RTCEvents.SET_LOCAL_DESCRIPTION_FAILED, + function (e) { + CallStats.sendSetLocalDescFailed(e); }); - APP.xmpp.addListener(RTCEvents.SET_REMOTE_DESCRIPTION_FAILED, function (e) { - CallStats.sendSetRemoteDescFailed(e); + APP.xmpp.addListener( + RTCEvents.SET_REMOTE_DESCRIPTION_FAILED, + function (e) { + CallStats.sendSetRemoteDescFailed(e); }); APP.xmpp.addListener(RTCEvents.ADD_ICE_CANDIDATE_FAILED, function (e) { CallStats.sendAddIceCandidateFailed(e);