Skip to content

Commit

Permalink
fix(copy): remove references to deprecated code (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
dlabrecq committed Jun 28, 2018
1 parent d7628c6 commit f2eb20c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions src/app/copy/block-copy/example/block-copy-example.module.ts
@@ -1,8 +1,6 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { NotificationModule } from '../../../notification/notification.module';

import { TabsetConfig, TabsModule } from 'ngx-bootstrap/tabs';

import { DemoComponentsModule } from '../../../../demo/components/demo-components.module';
Expand All @@ -11,6 +9,8 @@ import { BlockCopyExampleComponent } from './block-copy-example.component';
import { BlockCopyBasicExampleComponent } from './block-copy-basic-example.component';
import { BlockCopyNotificationExampleComponent } from './block-copy-notification-example.component';
import { BlockCopyExpandedExampleComponent } from './block-copy-expanded-example.component';
import { ToastNotificationListModule }
from '../../../notification/toast-notification-list/toast-notification-list.module';

@NgModule({
declarations: [
Expand All @@ -23,8 +23,8 @@ import { BlockCopyExpandedExampleComponent } from './block-copy-expanded-example
CommonModule,
BlockCopyModule,
DemoComponentsModule,
NotificationModule,
TabsModule.forRoot()
TabsModule.forRoot(),
ToastNotificationListModule
],
providers: [
TabsetConfig
Expand Down
Expand Up @@ -3,12 +3,12 @@ import { NgModule } from '@angular/core';

import { TabsetConfig, TabsModule } from 'ngx-bootstrap/tabs';

import { NotificationModule } from '../../../notification/notification.module';

import { DemoComponentsModule } from '../../../../demo/components/demo-components.module';
import { CopyService } from '../copy.service';
import { CopyServiceExampleComponent } from './copy-service-example.component';
import { CopyServiceButtonExampleComponent } from './copy-service-button-example.component';
import { ToastNotificationListModule }
from '../../../notification/toast-notification-list/toast-notification-list.module';

@NgModule({
declarations: [
Expand All @@ -18,8 +18,8 @@ import { CopyServiceButtonExampleComponent } from './copy-service-button-example
imports: [
CommonModule,
DemoComponentsModule,
NotificationModule,
TabsModule.forRoot()
TabsModule.forRoot(),
ToastNotificationListModule
],
providers: [
CopyService,
Expand Down
@@ -1,8 +1,6 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { NotificationModule } from '../../../notification/notification.module';

import { TabsetConfig, TabsModule } from 'ngx-bootstrap/tabs';

import { DemoComponentsModule } from '../../../../demo/components/demo-components.module';
Expand All @@ -11,6 +9,8 @@ import { InlineCopyExampleComponent } from './inline-copy-example.component';
import { InlineCopyA11yExampleComponent } from './inline-copy-a11y-example.component';
import { InlineCopyWrapExampleComponent } from './inline-copy-wrap-example.component';
import { InlineCopyBasicExampleComponent } from './inline-copy-basic-example.component';
import { ToastNotificationListModule }
from '../../../notification/toast-notification-list/toast-notification-list.module';

@NgModule({
declarations: [
Expand All @@ -23,8 +23,8 @@ import { InlineCopyBasicExampleComponent } from './inline-copy-basic-example.com
CommonModule,
InlineCopyModule,
DemoComponentsModule,
NotificationModule,
TabsModule.forRoot()
TabsModule.forRoot(),
ToastNotificationListModule
],
providers: [
TabsetConfig
Expand Down

0 comments on commit f2eb20c

Please sign in to comment.