diff options
author | zhangab <zhanganbing@chinamobile.com> | 2018-04-18 09:11:56 +0800 |
---|---|---|
committer | zhangab <zhanganbing@chinamobile.com> | 2018-04-18 09:12:03 +0800 |
commit | d698af153772ca4351ad3b23fbb987fc749890af (patch) | |
tree | 8fa49f10523134f9596814ef7a30528e298ac660 /usecaseui-common/src/main/webapp/app/fusionapp/scripts | |
parent | ffffd8a35ae5fcea703a7427844037c07c232b92 (diff) |
Fix Security/Vulnerability problems
Change-Id: Ie0f2c9e0794941d9b9a7f00a6c3d349269d98ed1
Issue-ID: USECASEUI-104
Signed-off-by: zhangab <zhanganbing@chinamobile.com>
Diffstat (limited to 'usecaseui-common/src/main/webapp/app/fusionapp/scripts')
8 files changed, 0 insertions, 79 deletions
diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/dummy.txt b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/dummy.txt deleted file mode 100644 index e69de29b..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/dummy.txt +++ /dev/null diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js deleted file mode 100644 index ad4f777e..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-controller.js +++ /dev/null @@ -1,61 +0,0 @@ -app.controller('samplePageController', function($scope, $http,ProfileService,modalService){ - $scope.tableData=[]; - $scope.viewPerPage=20; - $scope.scrollViewPerPage=2; - $scope.currentPage=1; - $scope.totalPage; - $scope.searchCategory; - $scope.searchString=""; - $scope.currentPageNum=1; - ProfileService.getProfilePagination(1,$scope.viewPerPage).then(function(data){ - var j = data; - $scope.data = JSON.parse(j.data); - $scope.tableData =JSON.parse($scope.data.profileList); - $scope.totalPages =JSON.parse($scope.data.totalPage); - for(x in $scope.tableData){ - if($scope.tableData[x].active_yn=='Y') - $scope.tableData[x].active_yn=true; - else - $scope.tableData[x].active_yn=false; - } - //$scope.resetMenu(); - },function(error){ - console.log("failed"); - reloadPageOnce(); - }); - - $scope.$watch('currentPageNum', function(val) { - - ProfileService.getProfilePagination(val,$scope.viewPerPage).then(function(data){ - var j = data; - $scope.data = JSON.parse(j.data); - $scope.tableData =JSON.parse($scope.data.profileList); - $scope.totalPages =JSON.parse($scope.data.totalPage); - for(x in $scope.tableData){ - if($scope.tableData[x].active_yn=='Y') - $scope.tableData[x].active_yn=true; - else - $scope.tableData[x].active_yn=false; - } - //$scope.resetMenu(); - },function(error){ - console.log("failed"); - }); - - }); - - $scope.editRow = function(profileId){ - window.location = 'userProfile#/profile/' + profileId; - } - - $scope.toggleProfileActive = function(rowData) { - modalService.popupConfirmWinWithCancel("Confirm","You are about to change user's active status. Do you want to continue?", - function(){ - $http.get("profile/toggleProfileActive?profile_id="+rowData.id).success(function(){}); - }, - function(){ - rowData.active=!rowData.active; - }) - }; - -});
\ No newline at end of file diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js deleted file mode 100644 index 8ba4eb54..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sample-page-iframe-controller.js +++ /dev/null @@ -1,4 +0,0 @@ -app.controller('samplePageWithIframeController', function($scope, $http,ProfileService,modalService){ - - -});
\ No newline at end of file diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js deleted file mode 100644 index 518880c7..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/controller/sampleController.js +++ /dev/null @@ -1,11 +0,0 @@ -app.config(function($routeProvider) { - $routeProvider - .when('/iframe', { - templateUrl: 'app/fusionapp/scripts/view-models/sampleWithIframe.html', - controller : "samplePageWithIframeController" - }) - .otherwise({ - templateUrl: 'app/fusionapp/scripts/view-models/sample.html', - controller : "samplePageController" - }); -});
\ No newline at end of file diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/directives/dummy.txt b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/directives/dummy.txt deleted file mode 100644 index e69de29b..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/directives/dummy.txt +++ /dev/null diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/utils/dummy.txt b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/utils/dummy.txt deleted file mode 100644 index e69de29b..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/utils/dummy.txt +++ /dev/null diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/view-models/dummy.txt b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/view-models/dummy.txt deleted file mode 100644 index e69de29b..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/view-models/dummy.txt +++ /dev/null diff --git a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/view-models/sampleWithIframe.html b/usecaseui-common/src/main/webapp/app/fusionapp/scripts/view-models/sampleWithIframe.html deleted file mode 100644 index dafdc6a9..00000000 --- a/usecaseui-common/src/main/webapp/app/fusionapp/scripts/view-models/sampleWithIframe.html +++ /dev/null @@ -1,3 +0,0 @@ -<div ng-controller="samplePageWithIframeController" style="margin-left: auto;margin-right: auto;height:700px;"> - <iframe style="margin-top:5px;width:100%;height:100%" frameBorder="0" vspace="0" src="user_profile"></iframe> -</div>
\ No newline at end of file |