Skip to content

Commit 9dda0df

Browse files
committed
tirei o public
1 parent 5040800 commit 9dda0df

10 files changed

+6
-289
lines changed
File renamed without changes.
File renamed without changes.

public/microphone.js microphone.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ function Microphone(options,callback){
3030
mode : 2, //Available modes: Recording -> 1, Streaming -> 2
3131
sampleRate : 44100,
3232
gain : 50,
33-
swfPath : '/public/microphone.swf',
33+
swfPath : 'microphone.swf',
3434
debugging : true
3535
}
3636

public/crossdomain.xml

-24
This file was deleted.

public/listen.js

-193
This file was deleted.

public/microphone.swf

-2.14 KB
Binary file not shown.

public/style.css

-66
This file was deleted.

views/layout.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<title>Carcará SoundStream</title>
77

8-
<link rel="stylesheet" href="/public/style.css" type="text/css">
8+
<link rel="stylesheet" href="/style.css" type="text/css">
99
<script src="http://platform.twitter.com/anywhere.js?id=261Oz4VtFc8Qb8ho330uA&v=1" type="text/javascript"></script>
1010

1111
</head>
@@ -30,11 +30,11 @@ <h2>It's very simple. Just login and start to talk in your particular internet r
3030
</div>
3131
<div class="column">
3232
Start to speak on your microphone<br><br>
33-
<img src="/public/images/mic.png" height="50">
33+
<img src="/images/mic.png" height="50">
3434
</div>
3535
<div class="column">
3636
Share with your friend your new live channel<br><br>
37-
<img src="/public/images/listen.png" height="50">
37+
<img src="/images/listen.png" height="50">
3838
</div>
3939
</div>
4040
</div>

views/listen.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
33
<script src="/socket.io/socket.io.js"></script>
44
<audio id="radio"></audio>
5-
<script src="/public/listen.js"></script>
5+
<script src="/listen.js"></script>

views/talk.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
<script src="http://code.jquery.com/jquery-1.6.1.min.js"></script>
33
<script src="/socket.io/socket.io.js"></script>
4-
<script src="/public/microphone.js"></script>
4+
<script src="/microphone.js"></script>
55

66
<button value="Record">Record</button>
77
<button value="Stop">Stop</button>

0 commit comments

Comments
 (0)