Add description to export modal

This commit is contained in:
Colin McLeod
2015-07-18 16:50:03 -07:00
parent a6ba61a2bf
commit 2890ff5537
3 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
angular.module('app').controller('ExportController', ['$scope', '$stateParams', function($scope, $stateParams) {
$scope.title = $stateParams.title || 'Export';
$scope.description = $stateParams.description;
if ($stateParams.promise) {
$scope.export = 'Generating...';