summaryrefslogtreecommitdiffstats
path: root/catalog-ui
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2018-09-24 16:52:18 +0800
committerMichael Lando <ml636r@att.com>2018-09-27 12:29:24 +0000
commit5b314dc6e0942bbec5be0f3417efd62685123a41 (patch)
tree2ae38fd136996c2470e475fa25f0a8086c18df4f /catalog-ui
parent8efb15270421833ffea495c8769b30b998d88577 (diff)
Fix header info of menu-item
Change-Id: Icc2bca4c1afb07d037c521e88b18eb6f633283d0 Issue-ID: SDC-1770 Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Diffstat (limited to 'catalog-ui')
-rw-r--r--catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts6
-rw-r--r--catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts6
-rw-r--r--catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts16
3 files changed, 18 insertions, 10 deletions
diff --git a/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts b/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts
index 8b2006634e..3820573e58 100644
--- a/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts
+++ b/catalog-ui/src/app/ng2/components/ui/menu/menu-item.component.ts
@@ -1,9 +1,5 @@
/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@@ -15,9 +11,9 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
- * ============LICENSE_END=========================================================
*/
+
import { Component, Input, Output, EventEmitter } from '@angular/core';
@Component({
diff --git a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts
index 290c8d06af..939599f0bc 100644
--- a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts
+++ b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.component.ts
@@ -1,9 +1,5 @@
/*-
- * ============LICENSE_START=======================================================
- * SDC
- * ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
@@ -15,9 +11,9 @@
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
- * ============LICENSE_END=========================================================
*/
+
import { Component, Input, ContentChildren, SimpleChanges, QueryList } from '@angular/core';
import { MenuItemComponent } from "./menu-item.component";
import { Point } from "app/models";
diff --git a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts
index fdbbf59f48..9a2d57acaa 100644
--- a/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts
+++ b/catalog-ui/src/app/ng2/components/ui/menu/menu-list.module.ts
@@ -1,3 +1,19 @@
+/*-
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
import { NgModule } from "@angular/core";
import { CommonModule } from '@angular/common';
import { MenuListComponent } from "./menu-list.component";