From fe6e592c20af8e3e6d71db9fe9302776c9ea21e4 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Sat, 13 Sep 2014 18:23:36 +0100 Subject: [PATCH] Add missing semicolon --- client/js/shout.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/js/shout.js b/client/js/shout.js index 5f324838..aed92125 100644 --- a/client/js/shout.js +++ b/client/js/shout.js @@ -143,7 +143,7 @@ $(function() { }) ); sidebar.find(".chan") - .sort(function(a, b) { return $(a).data("id") - $(b).data("id") }) + .sort(function(a, b) { return $(a).data("id") - $(b).data("id"); }) .last() .trigger("click"); }); @@ -464,7 +464,7 @@ $(function() { self.focus(); return false; } - }) + }); }); windows.on("click", ".input", function() { @@ -472,7 +472,7 @@ $(function() { }); forms.on("submit", "form", function(e) { - e.preventDefault() + e.preventDefault(); var event = "auth"; var form = $(this); if (form.closest(".window").attr("id") == "connect") {