Skip to content

Commit 05dbb90

Browse files
devversionjelbourn
authored andcommitted
fix(focus-origin): missing rxjs of operator (#4497)
Recently in SHA f27df86 the `Observable.of` operator has been introduced. This operator hasn't been imported explicitly. The build doesn't fail if the whole library is built together because other files import the operator. But when compiling the `core/` package on its own it will start failing.
1 parent 5299677 commit 05dbb90

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/lib/core/style/focus-origin-monitor.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ import {Observable} from 'rxjs/Observable';
1414
import {Subject} from 'rxjs/Subject';
1515
import {Platform} from '../platform/platform';
1616

17+
import 'rxjs/add/observable/of';
18+
1719

1820
// This is the value used by AngularJS Material. Through trial and error (on iPhone 6S) they found
1921
// that a value of around 650ms seems appropriate.

0 commit comments

Comments
 (0)