chore(): fix host properties for MD components.
This commit is contained in:

committed by
Jeremy Elbourn

parent
dff4795e49
commit
b9eab463f7
@ -2,7 +2,7 @@
|
||||
* Dart version of browser APIs. This library depends on 'dart:html' and
|
||||
* therefore can only run in the browser.
|
||||
*/
|
||||
library angular2.src.facade.browser;
|
||||
library angular2.src.facade.browser;
|
||||
|
||||
import 'dart:js' show context;
|
||||
|
||||
@ -12,6 +12,7 @@ export 'dart:html' show
|
||||
window,
|
||||
Element,
|
||||
Node,
|
||||
MouseEvent,
|
||||
KeyboardEvent,
|
||||
Event;
|
||||
|
||||
|
@ -8,3 +8,6 @@ export {win as window};
|
||||
export var document = window.document;
|
||||
export var location = window.location;
|
||||
export var gc = window.gc ? () => window.gc() : () => null;
|
||||
export {Event as Event};
|
||||
export {MouseEvent as MouseEvent};
|
||||
export {KeyboardEvent as KeyboardEvent};
|
||||
|
@ -12,3 +12,6 @@ export {win as window};
|
||||
export var document = window.document;
|
||||
export var location = window.location;
|
||||
export var gc = window.gc ? () => window.gc() : () => null;
|
||||
export const Event = Event;
|
||||
export const MouseEvent = MouseEvent;
|
||||
export const KeyboardEvent = KeyboardEvent;
|
||||
|
Reference in New Issue
Block a user