Browse Source

Fixed sharing information in photo infobox

Tobias Reich 10 years ago
parent
commit
d7ba8b127b
2 changed files with 2 additions and 2 deletions
  1. 0 0
      dist/main.js
  2. 2 2
      src/scripts/view.js

File diff suppressed because it is too large
+ 0 - 0
dist/main.js


+ 2 - 2
src/scripts/view.js

@@ -390,13 +390,13 @@ view.photo = {
 			$('#button_share')
 			$('#button_share')
 				.addClass('active')
 				.addClass('active')
 				.attr('title', 'Share Photo');
 				.attr('title', 'Share Photo');
-			if (photo.json.init) $('#infobox .attr_visibility').html('Public');
+			if (photo.json.init) $('#infobox .attr_public').html('Yes');
 		} else {
 		} else {
 			// Photo private
 			// Photo private
 			$('#button_share')
 			$('#button_share')
 				.removeClass('active')
 				.removeClass('active')
 				.attr('title', 'Make Public');
 				.attr('title', 'Make Public');
-			if (photo.json.init) $('#infobox .attr_visibility').html('Private');
+			if (photo.json.init) $('#infobox .attr_public').html('No');
 		}
 		}
 
 
 	},
 	},

Some files were not shown because too many files changed in this diff