UPDATE: It's formatted correctly after posting the question. Here's a screenshot of what it looks like when creating the question: http://cl.ly/3u072T2K0F2P2A2n0d3Q. I'm on Chrome v19.
Here's a d-paste of the code that I can't seem to format correctly on Stack Overflow: http://dpaste.com/765025/copy/.
Here's the code pasted as is, I've tried writing it manually as well... what could be the reason for this problem?
onTwitterInit : function () {
if (window.twttr) {
var that = this;
window.twttr.anywhere(function (T) {
T.bind("tweet", $.proxy(that.onTweet, that));
T.bind("follow", $.proxy(that.onFollow, that));
T.bind("authComplete", $.proxy(that.onAuthComplete, that));
T.bind("signOut", $.proxy(that.onSignOut, that));
$.subscribe(EVENTS.LOGIN, function (e) {
T.signIn();
});
$.subscribe(EVENTS.POST_STATUS, function (e, data) {
if (T.isConnected()) {
T.Status.update(data.text);
} else {
that.customTweet(e, data);
}
});
$.subscribe(EVENTS.GET_STATUS, function (e) {
if (T.isConnected()) {
that.onAuthComplete(null, T.currentUser)
} else {
that.onSignOut();
}
});
});
}
}




