Skip to content

Commit

Permalink
fix(core): dont import full RxJS library
Browse files Browse the repository at this point in the history
Closes #619
  • Loading branch information
sebholstein committed Sep 2, 2016
1 parent c50bc92 commit 84dfaaa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/directives/google-map-polyline.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {AfterContentInit, ContentChildren, Directive, EventEmitter, OnChanges, OnDestroy, QueryList, SimpleChanges} from '@angular/core';
import {Subscription} from 'rxjs/Rx';
import {Subscription} from 'rxjs/Subscription';

import {PolyMouseEvent} from '../services/google-maps-types';
import {PolylineManager} from '../services/managers/polyline-manager';
Expand Down
3 changes: 2 additions & 1 deletion src/core/services/managers/polyline-manager.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {Injectable, NgZone} from '@angular/core';
import {Observable, Observer} from 'rxjs/Rx';
import {Observable} from 'rxjs/Observable';
import {Observer} from 'rxjs/Observer';

import {SebmGoogleMapPolyline} from '../../directives/google-map-polyline';
import {SebmGoogleMapPolylinePoint} from '../../directives/google-map-polyline-point';
Expand Down

0 comments on commit 84dfaaa

Please sign in to comment.