ESlint comma-dangle

This commit is contained in:
Peter Jaszkowiak
2017-02-17 19:31:21 -07:00
parent aa64ec7db1
commit bc1d70c126
345 changed files with 1974 additions and 1978 deletions

View File

@@ -11,7 +11,7 @@ define('admin/modules/instance', function () {
type: 'info',
title: 'Reloading... <i class="fa fa-spin fa-refresh"></i>',
message: 'NodeBB is reloading.',
timeout: 5000
timeout: 5000,
});
$(window).one('action:reconnected', function () {
@@ -20,7 +20,7 @@ define('admin/modules/instance', function () {
type: 'success',
title: '<i class="fa fa-check"></i> Success',
message: 'NodeBB has reloaded successfully.',
timeout: 5000
timeout: 5000,
});
if (typeof callback === 'function') {
@@ -37,7 +37,7 @@ define('admin/modules/instance', function () {
type: 'info',
title: 'Rebuilding... <i class="fa fa-spin fa-refresh"></i>',
message: 'NodeBB is rebuilding front-end assets (css, javascript, etc).',
timeout: 10000
timeout: 10000,
});
$(window).one('action:reconnected', function () {
@@ -46,7 +46,7 @@ define('admin/modules/instance', function () {
type: 'success',
title: '<i class="fa fa-check"></i> Success',
message: 'NodeBB has successfully restarted.',
timeout: 10000
timeout: 10000,
});
if (typeof callback === 'function') {
@@ -60,7 +60,7 @@ define('admin/modules/instance', function () {
type: 'info',
title: 'Build Complete!... <i class="fa fa-spin fa-refresh"></i>',
message: 'NodeBB is reloading.',
timeout: 10000
timeout: 10000,
});
});
};