| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/library_view.html
|
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/library_view.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/library_view.html
|
| deleted file mode 100644
|
| index 2b8f35c0cc4eda3d42de353963f6faacb22085f4..0000000000000000000000000000000000000000
|
| --- a/runtime/bin/vmservice/client/lib/src/observatory_elements/library_view.html
|
| +++ /dev/null
|
| @@ -1,85 +0,0 @@
|
| -<head>
|
| - <link rel="import" href="class_ref.html">
|
| - <link rel="import" href="field_ref.html">
|
| - <link rel="import" href="function_ref.html">
|
| - <link rel="import" href="instance_ref.html">
|
| - <link rel="import" href="library_ref.html">
|
| - <link rel="import" href="nav_bar.html">
|
| - <link rel="import" href="observatory_element.html">
|
| - <link rel="import" href="script_ref.html">
|
| -</head>
|
| -<polymer-element name="library-view" extends="observatory-element">
|
| - <template>
|
| - <nav-bar>
|
| - <top-nav-menu></top-nav-menu>
|
| - <isolate-nav-menu app="{{ app }}" isolate="{{ app.locationManager.currentIsolate() }}">
|
| - </isolate-nav-menu>
|
| - <library-nav-menu app="{{ app }}" library="{{ library }}" last="{{ true }}"></library-nav-menu>
|
| - <nav-refresh callback="{{ refresh }}"></nav-refresh>
|
| - </nav-bar>
|
| -
|
| - <div class="alert alert-info">Scripts</div>
|
| - <table class="table table-hover">
|
| - <tbody>
|
| - <tr template repeat="{{ script in library['scripts']}}">
|
| - <td>
|
| - {{ script['kind'] }}
|
| - </td>
|
| - <td>
|
| - <script-ref app="{{ app }}" ref="{{ script }}"></script-ref>
|
| - </td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| - <div class="alert alert-info">Imported Libraries</div>
|
| - <table class="table table-hover">
|
| - <tbody>
|
| - <tr template repeat="{{ lib in library['libraries'] }}">
|
| - <td>
|
| - <library-ref app="{{ app }}" ref="{{ lib }}"></library-ref>
|
| - </td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| - <div class="alert alert-info">Variables</div>
|
| - <table class="table table-hover">
|
| - <tbody>
|
| - <tr template repeat="{{ variable in library['variables'] }}">
|
| - <td><field-ref app="{{ app }}" ref="{{ variable }}"></field-ref></td>
|
| - <td><instance-ref app="{{ app }}" ref="{{ variable['value'] }}"></instance-ref></td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| - <div class="alert alert-info">Functions</div>
|
| - <table class="table table-hover">
|
| - <tbody>
|
| - <tr template repeat="{{ func in library['functions'] }}">
|
| - <td>
|
| - <function-ref app="{{ app }}" ref="{{ func }}"></function-ref>
|
| - </td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| - <div class="alert alert-info">Classes</div>
|
| - <table class="table table-hover">
|
| - <thead>
|
| - <tr>
|
| - <th>Name</th>
|
| - <th>Internal Name</th>
|
| - </tr>
|
| - </thead>
|
| - <tbody>
|
| - <tr template repeat="{{ cls in library['classes'] }}">
|
| - <td>
|
| - <class-ref app="{{ app }}" ref="{{ cls }}"></class-ref>
|
| - </td>
|
| - <td>
|
| - <class-ref app="{{ app }}" ref="{{ cls }}" internal></class-ref>
|
| - </td>
|
| - </tr>
|
| - </tbody>
|
| - </table>
|
| -
|
| - </template>
|
| - <script type="application/dart" src="library_view.dart"></script>
|
| -</polymer-element>
|
|
|