errorbox.js : add missing semicolon so jshint doesn't complain
parent
3b5c932252
commit
62ea172ff4
|
@ -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]);
|
||||
|
|
Loading…
Reference in New Issue