From b8569aa5aba47cc3a55046175ee4e10aae0f3488 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Mon, 6 Mar 2017 15:43:40 +0900 Subject: [PATCH] Fix missing semicolon --- common/js/common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/js/common.js b/common/js/common.js index 02dbfec16..d21b5df8a 100644 --- a/common/js/common.js +++ b/common/js/common.js @@ -41,14 +41,14 @@ if (a1.hostname !== a2.hostname) return false; if (a1.port !== a2.port) return false; return true; - } + }; /** * @brief Get CSRF token for the document */ window.getCSRFToken = function() { return $("meta[name='csrf-token']").attr("content"); - } + }; /* Intercept jQuery AJAX calls to add CSRF headers */ $.ajaxPrefilter(function(options) {