errorbox.js : add missing semicolon so jshint doesn't complain

pull/1/head
ansuz 2016-02-12 11:15:59 +01:00
parent 3b5c932252
commit 62ea172ff4
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ define([
var showError = function (errorType, docHtml, moreInfo) {
$('body').append('<div class="modalBox"></div>');
var $modalbox = $('.modalBox')
var $modalbox = $('.modalBox');
$modalbox.append(CONTENT + STYLE);
$modalbox.find('.errorType').text(Messages['errorBox_errorType_' + errorType]);