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('VideoInstructionsController', function ($scope, $state, videoService, configServiceValues) {
$scope.configServiceValues = configServiceValues;
$scope.continue = function () {
videoService.saveEvaluation().then(function (questionnaireResponseId) {
if(!videoService.getMediaRequest().questionnaireResponse){
videoService.setQuestionnaireResponseId(questionnaireResponseId);
videoService.saveMediaRequest().then(function () {
$state.go('main.myvideo.video-upload');
});
} else {
$state.go('main.myvideo.video-upload');
}
});
};
$scope.back = function () {
$state.go('main.myvideo.media-request-info');
};
});
});