diff options
| -rw-r--r-- | public/javascripts/viggle.js | 4 |
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); |
