| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/curly_block.html
|
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/curly_block.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/curly_block.html
|
| deleted file mode 100644
|
| index d105267a0b05b6ac502625a53b54507ba0b0908e..0000000000000000000000000000000000000000
|
| --- a/runtime/bin/vmservice/client/lib/src/observatory_elements/curly_block.html
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -<polymer-element name="curly-block">
|
| - <template>
|
| - <style>
|
| - .idle {
|
| - display: inline-block;
|
| - color: #0489c3;
|
| - cursor: pointer;
|
| - }
|
| - .busy {
|
| - display: inline-block;
|
| - color: white;
|
| - cursor: wait;
|
| - }
|
| - </style>
|
| - <template if="{{ expanded }}">
|
| - <template if="{{ busy }}">
|
| - {<div class="busy"> ⊟ </div>
|
| - <br>
|
| - <content></content>
|
| - }
|
| - </template>
|
| - <template if="{{ !busy }}">
|
| - {<a on-click="{{ toggleExpand }}"><div class="idle"> ⊟ </div></a>
|
| - <br>
|
| - <content></content>
|
| - }
|
| - </template>
|
| - </template>
|
| -
|
| - <template if="{{ !expanded }}">
|
| - <template if="{{ busy }}">
|
| - {<div class="busy"> ⊞ </div>}
|
| - </template>
|
| - <template if="{{ !busy }}">
|
| - {<a on-click="{{ toggleExpand }}"><div class="idle"> ⊞ </div></a>}
|
| - </template>
|
| - </template>
|
| - </template>
|
| - <script type="application/dart" src="curly_block.dart"></script>
|
| -</polymer-element>
|
|
|