| Index: dart/site/try/src/run.dart
|
| diff --git a/dart/site/try/src/run.dart b/dart/site/try/src/run.dart
|
| index a5cc88c77644678e09c7f3dbbebb0b351897d5a6..3a278047bbf6eb56d752b4d2bc74d913cbf124b7 100644
|
| --- a/dart/site/try/src/run.dart
|
| +++ b/dart/site/try/src/run.dart
|
| @@ -51,10 +51,13 @@ window.onerror = function (message, url, lineNumber) {
|
| (function () {
|
|
|
| function postScrollHeight() {
|
| - window.parent.postMessage(["scrollHeight", document.documentElement.scrollHeight], "*");
|
| + window.parent.postMessage(
|
| + ["scrollHeight", document.documentElement.scrollHeight], "*");
|
| }
|
|
|
| -var observer = new (window.MutationObserver||window.WebKitMutationObserver||window.MozMutationObserver)(function(mutations) {
|
| +var observer = new (window.MutationObserver ||
|
| + window.WebKitMutationObserver ||
|
| + window.MozMutationObserver)(function(mutations) {
|
| postScrollHeight()
|
| window.setTimeout(postScrollHeight, 500);
|
| });
|
|
|