From 4e755e304b2f6137f50e25cad52e3951ef7ba4ac Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 8 Jun 2015 11:31:24 -0700 Subject: [PATCH] fix spacing in new JS file --- examples/dialTone.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dialTone.js b/examples/dialTone.js index 0748d0ba94..135acb17f4 100644 --- a/examples/dialTone.js +++ b/examples/dialTone.js @@ -14,10 +14,10 @@ var connectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/sho // setup the options needed for that sound var connectSoundOptions = { - localOnly: true + localOnly: true } // play the sound locally once we get the first audio packet from a mixer Audio.receivedFirstPacket.connect(function(){ - Audio.playSound(connectSound, connectSoundOptions); + Audio.playSound(connectSound, connectSoundOptions); });