| Index: client/dom/scripts/template_frog_dom.darttemplate
|
| diff --git a/client/dom/scripts/template_frog_dom.darttemplate b/client/dom/scripts/template_frog_dom.darttemplate
|
| index 58afba08c5dbea2368046516988f9bf4516367b1..5c94bf053719e9cbf0908232b5c84a55b4e74c8a 100644
|
| --- a/client/dom/scripts/template_frog_dom.darttemplate
|
| +++ b/client/dom/scripts/template_frog_dom.darttemplate
|
| @@ -14,5 +14,6 @@ $!GENERATED_DART_FILES
|
| #source('src/TimeoutHandler.dart');
|
|
|
| class Window extends DOMWindow {}
|
| -Window window;
|
| -HTMLDocument get document() => window.document;
|
| +DOMWindow get window() native "return window;";
|
| +// TODO(vsm): Revert to Dart method when 508 is fixed.
|
| +HTMLDocument get document() native "return window.document;";
|
|
|