Fix references to removed renderHasPendingRestart function
This commit is contained in:
parent
36224ce5f7
commit
75b7afd531
1 changed files with 3 additions and 9 deletions
|
@ -741,21 +741,15 @@ define(["datetime", "events", "itemHelper", "serverNotifications", "dom", "globa
|
||||||
};
|
};
|
||||||
return function (view, params) {
|
return function (view, params) {
|
||||||
function onRestartRequired(evt, apiClient) {
|
function onRestartRequired(evt, apiClient) {
|
||||||
if (apiClient.serverId() === serverId) {
|
console.debug('onRestartRequired not implemented', evt, apiClient);
|
||||||
renderHasPendingRestart(view, apiClient, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onServerShuttingDown(evt, apiClient) {
|
function onServerShuttingDown(evt, apiClient) {
|
||||||
if (apiClient.serverId() === serverId) {
|
console.debug('onServerShuttingDown not implemented', evt, apiClient);
|
||||||
renderHasPendingRestart(view, apiClient, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onServerRestarting(evt, apiClient) {
|
function onServerRestarting(evt, apiClient) {
|
||||||
if (apiClient.serverId() === serverId) {
|
console.debug('onServerRestarting not implemented', evt, apiClient);
|
||||||
renderHasPendingRestart(view, apiClient, true);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function onPackageInstalling(evt, apiClient) {
|
function onPackageInstalling(evt, apiClient) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue