Skip to content

Commit 8b2c113

Browse files
author
pipeline
committed
bug(EJ2-5450): Tab header className change.
1 parent c5688d7 commit 8b2c113

22 files changed

+29
-38
lines changed

src/tab/default-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/tab/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This sample demonstrates the default functionalities of the <code>Tab</code>. Click on the <code>header</code> element to activate the corresponding Tab, and displays its <code>content</code>.
44
</p>
55
</div>
6-
<div class="control-section">
6+
<div class="control-section e-tab-section">
77
<div class="e-sample-resize-container">
88
<!-- Render the Tab Component -->
99
<ej-tab id="tab_default" heightAdjustMode='Auto'>

src/tab/orientation-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/tab/orientation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This sample demonstrates the <code>header</code> orientation of the <code>Tab</code>. Select option from drop-downs to switch header placement and changing the header style in properties panel.
44
</p>
55
</div>
6-
<div class="control-section">
6+
<div class="control-section e-tab-section">
77
<div class="col-lg-8 content-wrapper">
88
<!-- Render the Tab Component -->
99
<ej-tab id="tab_orientation" #orientationTab [showCloseButton]='enableClose' heightAdjustMode='Auto'>

src/tab/responsivemodes-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/tab/responsivemodes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This sample demonstrates both <code>scrollable</code> and <code>popup</code> modes of the <code>Tab</code>. Select option from down-down to change the responsive option in property panel.
44
</p>
55
</div>
6-
<div class="control-section">
6+
<div class="control-section e-tab-section">
77
<div class="col-lg-8 content-wrapper">
88
<div class="e-sample-resize-container">
99
<!-- Render the Tab Component -->

src/tab/rtl-plnkr.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/tab/rtl.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This sample demonstrates the RTL mode of the <code>Tab</code>. Click on the <code>header</code> element for activate the corresponding tab, and displays its <code>content</code> with right-to-left direction.
44
</p>
55
</div>
6-
<div class="control-section">
6+
<div class="control-section e-tab-section">
77
<div class="e-sample-resize-container">
88
<!-- Render the Tab Component -->
99
<ej-tab id="tab_rtl" enableRtl='true' heightAdjustMode='Auto'>

src/tab/tab.component.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tab/tab.module.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { NgModule, ModuleWithProviders, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
22
import { RouterModule } from '@angular/router';
3-
import { TabModule } from '@syncfusion/ej2-ng-navigations';
43
import { DefaultTabComponent } from './default.component';
54
import { OrientationTabComponent } from './orientation.component';
65
import { ResponsiveTabComponent } from './responsivemodes.component';
@@ -17,7 +16,7 @@ export const tabAppRoutes: Object[] = [
1716
export const tabRouter: ModuleWithProviders = RouterModule.forChild(tabAppRoutes);
1817

1918
@NgModule({
20-
imports: [tabRouter, TabModule, SharedModule],
19+
imports: [tabRouter, SharedModule],
2120
declarations: [
2221
DefaultTabComponent,
2322
OrientationTabComponent,

0 commit comments

Comments
 (0)