Browse Source

Fixed photo.getID

Tobias Reich 10 years ago
parent
commit
56443a16c2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/scripts/photo.js

+ 2 - 2
src/scripts/photo.js

@@ -17,8 +17,8 @@ photo.getID = function() {
 	if (photo.json)	id = photo.json.id;
 	else			id = $('.photo:hover, .photo.active').attr('data-id');
 
-	if ($.isNumeric(id)===false)	return id;
-	else							return false;
+	if ($.isNumeric(id)===true)	return id;
+	else						return false;
 
 }