aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/mod_photos.js
diff options
context:
space:
mode:
Diffstat (limited to 'view/js/mod_photos.js')
-rw-r--r--view/js/mod_photos.js15
1 files changed, 9 insertions, 6 deletions
diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js
index 0526fd1e6..b254370c1 100644
--- a/view/js/mod_photos.js
+++ b/view/js/mod_photos.js
@@ -1,12 +1,16 @@
+/**
+ * JavaScript used by mod/photos
+ */
-var ispublic = aStr['everybody'];
+// is this variable used anywhere?
+var ispublic = aStr.everybody;
$(document).ready(function() {
- $(document).ready(function() {
+ $(document).ready(function() {
$("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'p', false, function(data) {
$("#photo-edit-newtag").val('@' + data.name);
});
- });
+ });
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
@@ -15,10 +19,9 @@ $(document).ready(function() {
$('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock');
$('#jot-public').hide();
});
- if(selstr == null) {
+ if(selstr === null) {
$('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock');
$('#jot-public').show();
}
-
}).trigger('change');
-});
+}); \ No newline at end of file