| Index: runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
|
| diff --git a/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart b/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
|
| index 852cc6974a63cada8ff8a8a74d1549b4dd998702..d1a4f8d6e44375b802374c3380fb094a0f5f95a0 100644
|
| --- a/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
|
| +++ b/runtime/bin/vmservice/client/lib/src/elements/observatory_application.dart
|
| @@ -14,9 +14,12 @@ import 'package:polymer/polymer.dart';
|
| @CustomTag('observatory-application')
|
| class ObservatoryApplicationElement extends ObservatoryElement {
|
| @published bool devtools = false;
|
| - @observable ObservatoryApplication app;
|
| + @published ObservatoryApplication app;
|
|
|
| - ObservatoryApplicationElement.created() : super.created() {
|
| + ObservatoryApplicationElement.created() : super.created();
|
| +
|
| + enteredView() {
|
| + super.enteredView();
|
| if (devtools) {
|
| app = new ObservatoryApplication.devtools();
|
| } else {
|
|
|