Add a semicolon at the end of this statement
[vid.git] / vid-app-common / src / main / webapp / app / vid / scripts / controller / previousVersionDialogController.js
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 "use strict";
22
23 var previousVersionDialogController = function( COMPONENT, FIELD, $scope, $http, $timeout, $log,
24                 CreationService, UtilityService, DataService,VIDCONFIGURATION) {
25         $scope.isTableDialogVisible = false;
26         $scope.summaryControl = {};
27         $scope.userProvidedControl = {};
28
29         var callbackFunction = undefined;
30         var componentId = undefined;
31
32         $scope.$on("createTableComponent", function(event, request) {
33
34                 $scope.isTableSpinnerVisible = true; 
35                 $scope.isTableErrorVisible = false;
36                 $scope.isTableDialogVisible = true;
37                 $scope.popup.isTablePopUpVisible = true;
38                 componentId = request.componentId;
39                 CreationService.initializeComponent(request.componentId);
40                 callbackFunction = request.callbackFunction;
41                 CreationService.setHttpErrorHandler(function(response) {
42                         showError("System failure", UtilityService
43                                         .getHttpErrorMessage(response));
44                 });
45                 $scope.isTableSpinnerVisible = false;
46         });
47         
48         
49         $scope.cancelTable = function(){
50                 $scope.isTableDialogVisible = false;
51                 $scope.popup.isTablePopUpVisible = false;
52         }
53         
54         
55 }
56
57 app
58                 .controller("previousVersionDialogController", [ "COMPONENT", "FIELD", "$scope", "$http",
59                                 "$timeout", "$log", "CreationService", "UtilityService", "DataService","VIDCONFIGURATION",
60                                 previousVersionDialogController ]);