| Index: runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/action_link.html
|
| diff --git a/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/action_link.html b/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/action_link.html
|
| deleted file mode 100644
|
| index b02e7d6915137b2447a94c9f8069dca072d987e0..0000000000000000000000000000000000000000
|
| --- a/runtime/bin/vmservice/observatory/deployed/web/packages/observatory/src/elements/action_link.html
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -<link rel="import" href="../../../../packages/polymer/polymer.html">
|
| -<link rel="import" href="instance_ref.html">
|
| -
|
| -<polymer-element name="action-link">
|
| - <template>
|
| - <style>
|
| - .idle {
|
| - color: #0489c3;
|
| - cursor: pointer;
|
| - text-decoration: none;
|
| - }
|
| - .idle:hover {
|
| - text-decoration: underline;
|
| - }
|
| - .busy {
|
| - color: #aaa;
|
| - cursor: wait;
|
| - text-decoration: none;
|
| - }
|
| - </style>
|
| -
|
| - <template if="{{ busy }}">
|
| - <span class="busy">[{{ label }}]</span>
|
| - </template>
|
| - <template if="{{ !busy }}">
|
| - <template if="{{ color == null }}">
|
| - <span class="idle"><a on-click="{{ doAction }}">[{{ label }}]</a></span>
|
| - </template>
|
| - <template if="{{ color != null }}">
|
| - <span class="idle" style="color:{{ color }}"><a on-click="{{ doAction }}">[{{ label }}]</a></span>
|
| - </template>
|
| - </template>
|
| - </template>
|
| -</polymer-element>
|
| -
|
| -<script type="application/dart" src="action_link.dart"></script>
|
|
|