From 62ea172ff4cb918fd61ea171a6c1c58920466b2e Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 12 Feb 2016 11:15:59 +0100 Subject: [PATCH] errorbox.js : add missing semicolon so jshint doesn't complain --- www/code/errorbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/code/errorbox.js b/www/code/errorbox.js index f0c214225..c6515316e 100644 --- a/www/code/errorbox.js +++ b/www/code/errorbox.js @@ -69,7 +69,7 @@ define([ var showError = function (errorType, docHtml, moreInfo) { $('body').append(''); - var $modalbox = $('.modalBox') + var $modalbox = $('.modalBox'); $modalbox.append(CONTENT + STYLE); $modalbox.find('.errorType').text(Messages['errorBox_errorType_' + errorType]);