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