| Index: runtime/observatory/lib/src/elements/eval_link.html
|
| diff --git a/runtime/observatory/lib/src/elements/eval_link.html b/runtime/observatory/lib/src/elements/eval_link.html
|
| deleted file mode 100644
|
| index d90370eb94e81c9751a89f2ec1e83ae0ec6e1357..0000000000000000000000000000000000000000
|
| --- a/runtime/observatory/lib/src/elements/eval_link.html
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -<link rel="import" href="../../../../packages/polymer/polymer.html">
|
| -
|
| -<polymer-element name="eval-link">
|
| - <template>
|
| - <style>
|
| - .idle {
|
| - color: #0489c3;
|
| - cursor: pointer;
|
| - }
|
| - .busy {
|
| - color: #aaa;
|
| - cursor: wait;
|
| - }
|
| - </style>
|
| -
|
| - <template if="{{ busy }}">
|
| - <span class="busy">{{ label }}</span>
|
| - </template>
|
| - <template if="{{ !busy }}">
|
| - <span class="idle"><a on-click="{{ evalNow }}">{{ label }}</a></span>
|
| - </template>
|
| - <template if="{{ error != null }}">
|
| - = <span style="color:red">{{ error }}</span>
|
| - </template>
|
| - <template if="{{ error == null }}">
|
| - <template if="{{ result != null }}">
|
| - = <any-service-ref ref="{{ result }}"></any-service-ref>
|
| - </template>
|
| - </template>
|
| - </template>
|
| -</polymer-element>
|
| -
|
| -<script type="application/dart" src="eval_link.dart"></script>
|
|
|