Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
define(['angular', 'app'], function (angular, app) {
'use strict';
app.controller('TeledermRequestInfoController', function ($scope, $state, imageMediaRequestService, mediaRequestProgressService, progressService, mediaRequestNavigationService, $controller) {
$scope.mediaRequest = imageMediaRequestService.getMediaRequest();
$scope.continueText = 'Continue';
$scope.viewSubmittedText = 'View Submitted Photos';
$scope.requestInfoTemplate = "modules/applets/mytelederm/pages/media-request-info/partials/_telederm-request-info.html";
$scope.routeBase = 'main.mytelederm';
$scope.continueCallback = function () {
progressService.setProgressServiceInstance(mediaRequestProgressService);
mediaRequestNavigationService.resume();
};
$scope.reviewCallback = function () {
$state.go('main.mytelederm.review-submitted-photos');
};
angular.extend(this, $controller('MediaRequestInfoController', {$scope: $scope}));
});
});