aboutsummaryrefslogtreecommitdiffstats
path: root/public/javascripts/viggle.js
diff options
context:
space:
mode:
authorTeddy Wing2013-04-28 14:54:10 -0400
committerTeddy Wing2013-04-28 14:54:10 -0400
commitb59ca41cb1d4c4cda54aa0c3d25174a0b4003953 (patch)
treeafd4eff22be905a2ee840f76e8c7b6ea8118a62d /public/javascripts/viggle.js
parentad3f3cbd961c4881084386cd9294e5e7a8b675c3 (diff)
downloadWho-am-I-b59ca41cb1d4c4cda54aa0c3d25174a0b4003953.tar.bz2
Fix JS error in viggle.js
Diffstat (limited to 'public/javascripts/viggle.js')
-rw-r--r--public/javascripts/viggle.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/public/javascripts/viggle.js b/public/javascripts/viggle.js
index 87a84da..5d068d1 100644
--- a/public/javascripts/viggle.js
+++ b/public/javascripts/viggle.js
@@ -6,14 +6,14 @@
var showInfo = JSON.parse(message);
if (showInfo.status !== 'success') {
VAPP.showModal(function(message) {}, 'Oops ...', null, 'Unable to get show info.', 'Please try again.', false);
- return;
+ return;
}
// Name of the current show
var showName = showInfo.data.program_data.program_title;
VAPP.setTitleBarSubTitle(function(message) {}, showName);
- }
+ });
}
document.addEventListener('VAPPReady', onBridgeIsReady, true);