chore(): fix host properties for MD components.

This commit is contained in:
Jeremy Elbourn
2015-04-23 13:15:20 -07:00
committed by Jeremy Elbourn
parent dff4795e49
commit b9eab463f7
9 changed files with 38 additions and 35 deletions

View File

@ -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;

View File

@ -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};

View File

@ -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;