diff options
Diffstat (limited to 'src/main/resources/META-INF/resources/designer/scripts/under_construction_ctrl.js')
-rw-r--r-- | src/main/resources/META-INF/resources/designer/scripts/under_construction_ctrl.js | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/src/main/resources/META-INF/resources/designer/scripts/under_construction_ctrl.js b/src/main/resources/META-INF/resources/designer/scripts/under_construction_ctrl.js index 4af28ab7..cbe1da5e 100644 --- a/src/main/resources/META-INF/resources/designer/scripts/under_construction_ctrl.js +++ b/src/main/resources/META-INF/resources/designer/scripts/under_construction_ctrl.js @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP CLAMP * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights + * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights * reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); @@ -20,19 +20,10 @@ * =================================================================== * */ - 'use strict'; - - - -function PageUnderConstructionCtrl($scope,$rootScope, $resource, $http, $location) -{ - +angular.module('clds-app').controller( +'PageUnderConstructionCtrl', +[ '$scope', '$rootScope', '$resource', '$http', '$location', +function($scope, $rootScope, $resource, $http, $location) { console.log("//////////PageUnderConstructionCtrl"); - - - -} - - - +} ]); |