Skip to content

Commit

Permalink
chore: remove dom projection service (#3656)
Browse files Browse the repository at this point in the history
Gets rid of the `DomProjection` service which isn't being used anymore.

Fixes #3649.
  • Loading branch information
crisbeto authored and jelbourn committed Mar 20, 2017
1 parent 2dbf87c commit 5c1474d
Show file tree
Hide file tree
Showing 8 changed files with 0 additions and 243 deletions.
3 changes: 0 additions & 3 deletions src/demo-app/demo-app-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import {SnackBarDemo} from './snack-bar/snack-bar-demo';
import {PortalDemo, ScienceJoke} from './portal/portal-demo';
import {MenuDemo} from './menu/menu-demo';
import {TabsDemo, SunnyTabContent, RainyTabContent, FoggyTabContent} from './tabs/tabs-demo';
import {ProjectionDemo, ProjectionTestComponent} from './projection/projection-demo';
import {PlatformDemo} from './platform/platform-demo';
import {AutocompleteDemo} from './autocomplete/autocomplete-demo';
import {InputDemo} from './input/input-demo';
Expand Down Expand Up @@ -81,8 +80,6 @@ import {StyleDemo} from './style/style-demo';
PortalDemo,
ProgressBarDemo,
ProgressSpinnerDemo,
ProjectionDemo,
ProjectionTestComponent,
RadioDemo,
RippleDemo,
RotiniPanel,
Expand Down
1 change: 0 additions & 1 deletion src/demo-app/demo-app/demo-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export class DemoApp {
{name: 'Live Announcer', route: 'live-announcer'},
{name: 'Overlay', route: 'overlay'},
{name: 'Portal', route: 'portal'},
{name: 'Projection', route: 'projection'},
{name: 'Progress Bar', route: 'progress-bar'},
{name: 'Progress Spinner', route: 'progress-spinner'},
{name: 'Radio', route: 'radio'},
Expand Down
2 changes: 0 additions & 2 deletions src/demo-app/demo-app/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import {RippleDemo} from '../ripple/ripple-demo';
import {DialogDemo} from '../dialog/dialog-demo';
import {TooltipDemo} from '../tooltip/tooltip-demo';
import {SnackBarDemo} from '../snack-bar/snack-bar-demo';
import {ProjectionDemo} from '../projection/projection-demo';
import {TABS_DEMO_ROUTES} from '../tabs/routes';
import {PlatformDemo} from '../platform/platform-demo';
import {AutocompleteDemo} from '../autocomplete/autocomplete-demo';
Expand All @@ -48,7 +47,6 @@ export const DEMO_APP_ROUTES: Routes = [
{path: 'progress-spinner', component: ProgressSpinnerDemo},
{path: 'progress-bar', component: ProgressBarDemo},
{path: 'portal', component: PortalDemo},
{path: 'projection', component: ProjectionDemo},
{path: 'overlay', component: OverlayDemo},
{path: 'checkbox', component: CheckboxDemo},
{path: 'input', component: InputDemo},
Expand Down
50 changes: 0 additions & 50 deletions src/demo-app/projection/projection-demo.ts

This file was deleted.

3 changes: 0 additions & 3 deletions src/lib/core/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ export {
} from './portal/portal-directives';
export {DomPortalHost} from './portal/dom-portal-host';

// Projection
export * from './projection/projection';

// Platform
export * from './platform/index';

Expand Down
88 changes: 0 additions & 88 deletions src/lib/core/projection/projection.spec.ts

This file was deleted.

93 changes: 0 additions & 93 deletions src/lib/core/projection/projection.ts

This file was deleted.

3 changes: 0 additions & 3 deletions src/lib/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import {
PortalModule,
OverlayModule,
A11yModule,
ProjectionModule,
CompatibilityModule,
} from './core/index';

Expand Down Expand Up @@ -68,7 +67,6 @@ const MATERIAL_MODULES = [
StyleModule,
A11yModule,
PlatformModule,
ProjectionModule,
CompatibilityModule,
ObserveContentModule
];
Expand All @@ -91,7 +89,6 @@ const MATERIAL_MODULES = [
MdTabsModule.forRoot(),
MdToolbarModule.forRoot(),
PortalModule.forRoot(),
ProjectionModule.forRoot(),
RtlModule.forRoot(),
ObserveContentModule.forRoot(),

Expand Down

0 comments on commit 5c1474d

Please sign in to comment.