From 2a5d7cf0f49a12a89799235271636dc7c180d144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCbschle-Schneider?= Date: Tue, 5 May 2020 10:02:55 +0200 Subject: [PATCH] Add missing semicolons --- js/inputbar.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/inputbar.js b/js/inputbar.js index b2725f9..6aed63d 100644 --- a/js/inputbar.js +++ b/js/inputbar.js @@ -207,7 +207,7 @@ weechat.directive('inputBar', function() { commandCompletionBaseWord = replacedWord + suffix; previousInput = $scope.command + activeBuffer.id; commandCompletionPosition = newCursorPos; - } + }; // Check if we have requested this completion info before if (input + activeBuffer.id !== previousInput) { @@ -219,7 +219,7 @@ weechat.directive('inputBar', function() { // Save the list of completion object, we will only request is once // and cycle through it as long as the input doesn't change commandCompletionList = completionObject.list; - commandCompletionAddSpace = completionObject.add_space + commandCompletionAddSpace = completionObject.add_space; commandCompletionBaseWord = completionObject.base_word; commandCompletionPosition = caretPos; commandCompletionPositionInList = 0; @@ -294,7 +294,7 @@ weechat.directive('inputBar', function() { if (!!pasteToast) { document.body.removeChild(pasteToast); } - } + }; $scope.imgurDelete = function (deleteHash) { imgur.deleteImage( deleteHash, deleteCallback );