From 546442ff9a26f5dce6325e502ebe8e4435e17e46 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 12 Jun 2015 12:32:40 -0700 Subject: [PATCH] Fix sound URLs Three slashes needed for Windows. --- examples/dialTone.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dialTone.js b/examples/dialTone.js index b55e654f25..adbbd26acb 100644 --- a/examples/dialTone.js +++ b/examples/dialTone.js @@ -11,8 +11,8 @@ // // setup the local sound we're going to use -var connectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/hello.wav"); -var disconnectSound = SoundCache.getSound("file://" + Paths.resources + "sounds/goodbye.wav"); +var connectSound = SoundCache.getSound("file:///" + Paths.resources + "sounds/hello.wav"); +var disconnectSound = SoundCache.getSound("file:///" + Paths.resources + "sounds/goodbye.wav"); // setup the options needed for that sound var connectSoundOptions = {