duplicati/Duplicati/Server/webroot/ngax/scripts/controllers/AddWizardController.js
Kenneth Skovhede e4d8058cd3 Rewrote parts of the user interface.
This adds landing pages to restore and add, as requested in #2282 and #2293.
Added the app icon, and re-arranged the text as requested in #2286
2017-02-07 21:51:14 +01:00

13 lines
328 B
JavaScript

backupApp.controller('AddWizardController', function($scope, $location, gettextCatalog) {
$scope.selection = {
style: 'blank'
};
$scope.nextPage = function() {
if ($scope.selection.style == 'blank')
$location.path('/add');
else
$location.path('/import');
};
});