mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
8 lines
203 B
JavaScript
Executable File
8 lines
203 B
JavaScript
Executable File
angular.module('app').controller('DeleteController', ['$scope', 'Persist', function($scope, Persist) {
|
|
$scope.deleteAll = function() {
|
|
Persist.deleteAll();
|
|
$scope.$parent.dismiss();
|
|
};
|
|
|
|
}]);
|