Browse Source

Code style adjustment

Tobias Reich 9 years ago
parent
commit
83e3271f43
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/scripts/photo.js

+ 1 - 1
src/scripts/photo.js

@@ -553,7 +553,7 @@ photo.editTags = function(photoIDs) {
 photo.setTags = function(photoIDs, tags) {
 
 	if (!photoIDs) return false
-	if (photoIDs instanceof Array===false) photoIDs = [photoIDs]
+	if (photoIDs instanceof Array===false) photoIDs = [ photoIDs ]
 
 	// Parse tags
 	tags = tags.replace(/(\ ,\ )|(\ ,)|(,\ )|(,{1,}\ {0,})|(,$|^,)/g, ',')