Fixed small bug left over from testing

This commit is contained in:
Kevin Crider 2013-09-19 13:14:56 -04:00
parent d78315de50
commit 0de88e7d68
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ $(document).ready(function() {
// Version Polling //
setTimeout(function() {
$.post('/Version/isUpdateAvailable', function(data) {
if (data === 'false') {
if (data === 'true') {
$('#version').append(' - An update is available!');
}
});