Fix possible minor bug.

I don't know if the parser will know what you meant, or if issues could happen due to the  semicolon instead of the comma.
This commit is contained in:
Beakerboy 2014-12-04 01:41:48 -05:00
parent 00c494f85e
commit b720758dac

View File

@ -175,7 +175,7 @@ window.plugin.uniques.updateCheckedAndHighlight = function(guid) {
if (guid == window.selectedPortal) {
var uniqueInfo = plugin.uniques.uniques[guid];
var uniqueInfo = plugin.uniques.uniques[guid],
visited = (uniqueInfo && uniqueInfo.visited) || false,
captured = (uniqueInfo && uniqueInfo.captured) || false;
$('#visited').prop('checked', visited);