| Index: runtime/bin/vmservice/client/deployed/web/index.html
|
| diff --git a/runtime/bin/vmservice/client/deployed/web/index.html b/runtime/bin/vmservice/client/deployed/web/index.html
|
| index d1db4d36bc7a1a713867024c7afdae788de38dd0..b2ed0ba46726f1bafe850644972b9d665bff92cb 100644
|
| --- a/runtime/bin/vmservice/client/deployed/web/index.html
|
| +++ b/runtime/bin/vmservice/client/deployed/web/index.html
|
| @@ -451,6 +451,32 @@
|
| </polymer-element>
|
|
|
|
|
| +<polymer-element name="eval-link">
|
| + <template>
|
| + <style>
|
| + .idle {
|
| + color: #0489c3;
|
| + cursor: pointer;
|
| + }
|
| + .busy {
|
| + color: #aaa;
|
| + cursor: wait;
|
| + }
|
| + </style>
|
| +
|
| + <template if="{{ busy }}">
|
| + <span class="busy">[evaluate]</span>
|
| + </template>
|
| + <template if="{{ !busy }}">
|
| + <span class="idle"><a on-click="{{ evalNow }}">[evaluate]</a></span>
|
| + </template>
|
| + <template if="{{ result != null }}">
|
| + = <instance-ref ref="{{ result }}"></instance-ref>
|
| + </template>
|
| +
|
| + </template>
|
| +
|
| +</polymer-element>
|
| <polymer-element name="field-ref" extends="service-ref">
|
| <template>
|
| <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css">
|
| @@ -842,32 +868,6 @@
|
| </template>
|
|
|
| </polymer-element>
|
| -<polymer-element name="eval-link">
|
| - <template>
|
| - <style>
|
| - .idle {
|
| - color: #0489c3;
|
| - cursor: pointer;
|
| - }
|
| - .busy {
|
| - color: #aaa;
|
| - cursor: wait;
|
| - }
|
| - </style>
|
| -
|
| - <template if="{{ busy }}">
|
| - <span class="busy">[evaluate]</span>
|
| - </template>
|
| - <template if="{{ !busy }}">
|
| - <span class="idle"><a on-click="{{ evalNow }}">[evaluate]</a></span>
|
| - </template>
|
| - <template if="{{ result != null }}">
|
| - = <instance-ref ref="{{ result }}"></instance-ref>
|
| - </template>
|
| -
|
| - </template>
|
| -
|
| -</polymer-element>
|
| <polymer-element name="field-view" extends="observatory-element">
|
| <template>
|
| <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.css">
|
|
|