| 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 64316ded4c1cc8be9a19713f04c0d6c9fac1ab8b..36c28f76cdb1a318f28f4298e5f863d1e35e0f36 100644
|
| --- a/runtime/bin/vmservice/client/deployed/web/index.html
|
| +++ b/runtime/bin/vmservice/client/deployed/web/index.html
|
| @@ -357,7 +357,13 @@
|
| </div>
|
| </template>
|
|
|
| -</polymer-element><polymer-element name="isolate-summary" extends="observatory-element">
|
| +</polymer-element><polymer-element name="script-ref" extends="service-ref">
|
| +<template>
|
| + <a title="{{ hoverText }}" href="{{ url }}">{{ name }}</a>
|
| +</template>
|
| +
|
| +</polymer-element>
|
| +<polymer-element name="isolate-summary" extends="observatory-element">
|
| <template>
|
| <div class="row">
|
| <div class="col-md-1">
|
| @@ -437,12 +443,8 @@
|
| </div>
|
| <div class="col-md-6">
|
| <template if="{{ isolate.topFrame != null }}">
|
| - <a href="{{ app.locationManager.relativeLink(isolate.id, isolate.topFrame['function']['id']) }}">
|
| - {{ isolate.topFrame['function']['user_name'] }}
|
| - </a>
|
| - (<a href="{{ app.locationManager.relativeLink(isolate.id, isolate.topFrame['script']['id']) }}">
|
| - {{ isolate.topFrame | fileAndLine }}
|
| - </a>)
|
| + <function-ref app="{{ app }}" isolate="{{ isolate }}" ref="{{ isolate.topFrame['function'] }}"></function-ref>
|
| + (<script-ref app="{{ app }}" isolate="{{ isolate }}" ref="{{ isolate.topFrame['script'] }}" line="{{ isolate.topFrame['line'] }}"></script-ref>)
|
| <br>
|
| <pre>{{ isolate.topFrame['line'] }} {{ isolate.topFrame['lineString'] }}</pre>
|
| </template>
|
| @@ -535,12 +537,7 @@
|
| </template>
|
|
|
| </polymer-element>
|
| -<polymer-element name="script-ref" extends="service-ref">
|
| -<template>
|
| - <a href="{{ url }}">{{ name }}</a>
|
| -</template>
|
| -
|
| -</polymer-element><polymer-element name="library-view" extends="observatory-element">
|
| +<polymer-element name="library-view" extends="observatory-element">
|
| <template>
|
| <div class="alert alert-success">Library {{ library['name'] }}</div>
|
| <div class="alert alert-info">Scripts</div>
|
| @@ -705,7 +702,8 @@
|
| </div>
|
| <div class="col-md-9">
|
| <function-ref app="{{ app }}" ref="{{ frame['function'] }}"></function-ref>
|
| - ( <script-ref app="{{ app }}" ref="{{ frame['script'] }}"></script-ref>:{{ frame['line'] }} )
|
| + ( <script-ref app="{{ app }}" ref="{{ frame['script'] }}" line="{{ frame['line'] }}">
|
| + </script-ref> )
|
| </div>
|
| <div class="col-md-1"></div>
|
| </div>
|
|
|