diff options
| author | Teddy Wing | 2013-04-28 14:54:10 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2013-04-28 14:54:10 -0400 | 
| commit | b59ca41cb1d4c4cda54aa0c3d25174a0b4003953 (patch) | |
| tree | afd4eff22be905a2ee840f76e8c7b6ea8118a62d /public/javascripts | |
| parent | ad3f3cbd961c4881084386cd9294e5e7a8b675c3 (diff) | |
| download | Who-am-I-b59ca41cb1d4c4cda54aa0c3d25174a0b4003953.tar.bz2 | |
Fix JS error in viggle.js
Diffstat (limited to 'public/javascripts')
| -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); | 
