reloading on plugin activation click instead of restart

This commit is contained in:
Julian Lam
2014-10-23 15:21:44 -04:00
parent f295083a08
commit 8112ca73c8

View File

@@ -20,11 +20,11 @@ define('admin/extend/plugins', function() {
app.alert({
alert_id: 'plugin_toggled',
title: 'Plugin ' + (status.active ? 'Enabled' : 'Disabled'),
message: status.active ? 'Please restart your NodeBB to fully activate this plugin' : 'Plugin successfully deactivated',
message: status.active ? 'Please reload your NodeBB to fully activate this plugin' : 'Plugin successfully deactivated',
type: status.active ? 'warning' : 'success',
timeout: 5000,
clickfn: function() {
socket.emit('admin.restart');
socket.emit('admin.reload');
}
});
});