Browse Source

JsHint fixes

Tobias Reich 10 years ago
parent
commit
066d3be697
7 changed files with 16 additions and 10 deletions
  1. 3 3
      assets/js/album.js
  2. 2 1
      assets/js/contextMenu.js
  3. 1 1
      assets/js/lychee.js
  4. 5 3
      assets/js/multiselect.js
  5. 3 0
      assets/js/photo.js
  6. 2 2
      assets/js/upload.js
  7. 0 0
      assets/min/main.js

+ 3 - 3
assets/js/album.js

@@ -86,7 +86,7 @@ album = {
 
 	},
 
-	parse: function(photo) {
+	parse: function() {
 
 		if (!album.json.title) album.json.title = "Untitled";
 
@@ -143,7 +143,7 @@ album = {
 
 					if (visible.albums()) {
 
-						albumIDs.forEach(function(id, index, array) {
+						albumIDs.forEach(function(id) {
 							albums.json.num--;
 							view.albums.content.delete(id);
 						});
@@ -224,7 +224,7 @@ album = {
 
 				} else if (visible.albums()) {
 
-					albumIDs.forEach(function(id, index, array) {
+					albumIDs.forEach(function(id) {
 						albums.json.content[id].title = newTitle;
 						view.albums.content.title(id);
 					});

+ 2 - 1
assets/js/contextMenu.js

@@ -270,7 +270,8 @@ contextMenu = {
 
 		var mouse_x = e.pageX,
 			mouse_y = e.pageY,
-			items;
+			items,
+			link = "";
 
 		mouse_y -= $(document).scrollTop();
 

+ 1 - 1
assets/js/lychee.js

@@ -149,7 +149,7 @@ var lychee = {
 
 	logout: function() {
 
-		lychee.api("logout", function(data) {
+		lychee.api("logout", function() {
 			window.location.reload();
 		});
 

+ 5 - 3
assets/js/multiselect.js

@@ -38,7 +38,9 @@ multiselect = {
 
 	selectAll: function() {
 
-		var e;
+		var e,
+			newWidth,
+			newHeight;
 
 		if (mobileBrowser())		return false;
 		if (lychee.publicMode)		return false;
@@ -65,7 +67,7 @@ multiselect = {
 		e = {
 			pageX: $(document).width() - (multiselect.position.right / 2),
 			pageY: $(document).height() - multiselect.position.bottom
-		}
+		};
 
 		multiselect.getSelection(e);
 
@@ -172,7 +174,7 @@ multiselect = {
 
 					id = $(this).data('id');
 
-					if (id!=='0'&&id!==0&&id!=='f'&&id!=='s'&&id!=='r'&&id!==null&id!==undefined) {
+					if (id!=='0'&&id!==0&&id!=='f'&&id!=='s'&&id!=='r'&&id!==null&&id!==undefined) {
 
 						ids.push(id);
 						$(this).addClass('active');

+ 3 - 0
assets/js/photo.js

@@ -153,6 +153,9 @@ photo = {
 		buttons = [
 			["", function() {
 
+				var nextPhoto,
+					previousPhoto;
+
 				photoIDs.forEach(function(id, index, array) {
 
 					// Change reference for the next and previous photo

+ 2 - 2
assets/js/upload.js

@@ -12,7 +12,7 @@ upload = {
 		upload.close(true);
 		$("body").append(build.uploadModal(title, files));
 
-		if (callback!=null&&callback!=undefined) callback();
+		if (callback!==null&&callback!==undefined) callback();
 
 	},
 
@@ -158,7 +158,7 @@ upload = {
 						if (e.lengthComputable) {
 
 							// Calculate progress
-							progress = (e.loaded / e.total * 100 | 0);
+							progress = (e.loaded / e.total * 100) || 0;
 
 							// Set progress when progress has changed
 							if (progress>pre_progress) {

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


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