Skip to content

Commit

Permalink
fix(sortable): do not reexport BrowserModule
Browse files Browse the repository at this point in the history
fixes #1486
  • Loading branch information
valorkin committed Jan 13, 2017
1 parent 49ddff2 commit 77d79ab
Showing 1 changed file with 3 additions and 10 deletions.
13 changes: 3 additions & 10 deletions src/sortable/sortable.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,9 @@ import { SortableComponent } from './sortable.component';
import { DraggableItemService } from './draggable-item.service';

@NgModule({
declarations: [
SortableComponent
],
imports: [
BrowserModule
],
exports: [
BrowserModule,
SortableComponent
]
declarations: [SortableComponent],
imports: [BrowserModule],
exports: [SortableComponent]
})
export class SortableModule {
public static forRoot(): ModuleWithProviders {
Expand Down

0 comments on commit 77d79ab

Please sign in to comment.