We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Such requests:
$scope.deleteStation = function (name, location) { $http.delete(location).then(function () { $scope.loadPage($scope.currentPageIndex(), function () { $scope.addAlert('Station \'' + name + ' \' has been deleted!', 'success'); }); }, function (error) { $scope.addAlert('Error happened: \'' + error.data.message + ' \'', 'danger'); }); };
Reload the whole page that can be very heavyweight. Consider removing objects from angular model instead full page reload:
delete $scope.page.stations[index]
The text was updated successfully, but these errors were encountered:
wingsofovnia
No branches or pull requests
Such requests:
Reload the whole page that can be very heavyweight. Consider removing objects from angular model instead full page reload:
The text was updated successfully, but these errors were encountered: