Skip to content

Commit 0378ee1

Browse files
committed
tirei essa bobagem
1 parent 7f7372d commit 0378ee1

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

views/layout.html

+6-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,12 @@ <h2>It's very simple. Just login and start to talk in your particular internet r
3737
$("#signout").bind("click", function () { twttr.anywhere.signOut(); });
3838
user = T.currentUser;
3939

40-
$("#mic").css("cursor", "pointer").click(function() { location.href = "/talk"; });
41-
$("#listen").css("cursor", "pointer").click(function() { location.href = "/"+user.screenName; });
40+
$("#mic").css("cursor", "pointer").click(function() {
41+
location.href = "/talk";
42+
});
43+
$("#listen").css("cursor", "pointer").click(function() {
44+
location.href = "/"+user.screenName;
45+
});
4246
}
4347
else {
4448
T("#login-logout").connectButton();

views/listen.html

+1-7
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,4 @@
88

99
<div id="profile" style="padding: 50px; text-align: center">
1010

11-
</div>
12-
13-
<script>
14-
$.getJSON('http://api.twitter.com/1/users/show.json?screen_name=henriquegogo&callback=?', function(json) {
15-
$("#profile").append(json.url);
16-
});
17-
</script>
11+
</div>

0 commit comments

Comments
 (0)