From 4e220eb3c38fa8a99517d48dd242bbeb8696b74e Mon Sep 17 00:00:00 2001
From: Hadi Nategh <hnategh@gmail.com>
Date: Tue, 4 Jul 2017 13:25:38 +0200
Subject: [PATCH] Fix couple of IDE warnings

---
 mail/js/app.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mail/js/app.js b/mail/js/app.js
index d4eee033cd..4a9b521aae 100644
--- a/mail/js/app.js
+++ b/mail/js/app.js
@@ -1080,7 +1080,7 @@ app.classes.mail = AppJS.extend(
 					url: url,
 					domain: url_parts[0]
 				};
-			}
+			};
 
 			var host = getUrlParts(external_images[0].alt);
 			var showImages = function (_images, _save)
@@ -1106,7 +1106,7 @@ app.classes.mail = AppJS.extend(
 					}
 					node.src = parts.url;
 				});
-			}
+			};
 			var pref = egw.preference('allowExternalDomains', 'mail') || {};
 			pref = Object.values(pref);
 			if (pref.indexOf(host.domain)>-1)
@@ -5491,7 +5491,7 @@ app.classes.mail = AppJS.extend(
 	 * Spam Actions handler
 	 *
 	 * @param {object} _action egw action
-	 * @param {object} _sender nm row
+	 * @param {object} _senders nm row
 	 */
 	spam_actions: function (_action, _senders)
 	{
@@ -5664,7 +5664,7 @@ app.classes.mail = AppJS.extend(
 				}
 				else
 				{
-					self.resolveExternalImages(this.contentWindow.document)
+					self.resolveExternalImages(this.contentWindow.document);
 					// Use prepare print function to copy iframe content into div
 					// as we don't want to show content in iframe (scrolling problem).
 					self.mail_prepare_print(jQuery(this));