add wp loader

This commit is contained in:
usmannasir
2025-04-07 14:59:29 +05:00
parent 8f9ba56815
commit 9a0cda2fbb
2 changed files with 6 additions and 9 deletions

View File

@@ -602,9 +602,7 @@ app.controller('WPsiteHome', function ($scope, $http, $timeout, $compile, $windo
if (response.data.ret_data.debugging === 1) { if (response.data.ret_data.debugging === 1) {
$('#debugging').prop('checked', true); $('#debugging').prop('checked', true);
} }
if (response.data.ret_data.searchIndex === 1) { $scope.searchIndexEnabled = response.data.ret_data.searchIndex === 1;
$('#searchIndex').prop('checked', true);
}
if (response.data.ret_data.maintenanceMode === 1) { if (response.data.ret_data.maintenanceMode === 1) {
$('#maintenanceMode').prop('checked', true); $('#maintenanceMode').prop('checked', true);
} }
@@ -4204,9 +4202,7 @@ app.controller('WPsiteHome', function ($scope, $http, $timeout, $compile, $windo
if (response.data.ret_data.debugging === 1) { if (response.data.ret_data.debugging === 1) {
$('#debugging').prop('checked', true); $('#debugging').prop('checked', true);
} }
if (response.data.ret_data.searchIndex === 1) { $scope.searchIndexEnabled = response.data.ret_data.searchIndex === 1;
$('#searchIndex').prop('checked', true);
}
if (response.data.ret_data.maintenanceMode === 1) { if (response.data.ret_data.maintenanceMode === 1) {
$('#maintenanceMode').prop('checked', true); $('#maintenanceMode').prop('checked', true);
} }
@@ -9073,7 +9069,7 @@ app.controller('websitePages', function ($scope, $http, $timeout, $window) {
$scope.operationFailed = false; $scope.operationFailed = false;
$scope.operationSuccessfull = true; $scope.operationSuccessfull = true;
$scope.couldNotConnect = true; $scope.couldNotConnect = true;
$scope.openBaseDirBox = false; $scope.openBaseDirChanged = false;
$scope.errorMessage = response.data.error_message; $scope.errorMessage = response.data.error_message;

View File

@@ -243,8 +243,9 @@
<div class="custom-control custom-switch"> <div class="custom-control custom-switch">
<input ng-click="UpdateWPSettings('searchIndex')" <input ng-click="UpdateWPSettings('searchIndex')"
type="checkbox" type="checkbox"
class="custom-control-input ng-pristine ng-untouched ng-valid ng-not-empty" class="custom-control-input"
id="searchIndex"> id="searchIndex"
ng-model="searchIndexEnabled">
<label class="custom-control-label" <label class="custom-control-label"
for="searchIndex"></label> for="searchIndex"></label>
</div> </div>