| Index: runtime/observatory/lib/src/elements/nav_bar.html
|
| diff --git a/runtime/observatory/lib/src/elements/nav_bar.html b/runtime/observatory/lib/src/elements/nav_bar.html
|
| index bb6c0451c7853be1ef3025fa648741f1760a6deb..97c300aa263417c6664b7058f0026c23aec11a84 100644
|
| --- a/runtime/observatory/lib/src/elements/nav_bar.html
|
| +++ b/runtime/observatory/lib/src/elements/nav_bar.html
|
| @@ -33,7 +33,9 @@
|
| </style>
|
| <nav>
|
| <ul>
|
| - <nav-notify events="{{ app.notifications }}"></nav-notify>
|
| + <template if="{{ showNotify }}">
|
| + <nav-notify events="{{ app.notifications }}"></nav-notify>
|
| + </template>
|
| <content></content>
|
| </ul>
|
| </nav>
|
| @@ -274,7 +276,7 @@
|
| margin-top: 10px;
|
| margin-right: 10px;
|
| padding-right: 25px;
|
| - width: 200px;
|
| + width: 225px;
|
| color: #ddd;
|
| background: rgba(0,0,0,.6);
|
| border: solid 2px white;
|
| @@ -323,21 +325,16 @@
|
| _href="{{ gotoLink('/inspect', event.isolate) }}">{{ event.isolate.name }}</a>
|
| is paused
|
| <template if="{{ event.breakpoint != null }}">
|
| - at breakpoint
|
| + at breakpoint {{ event.breakpoint['breakpointNumber'] }}
|
| </template>
|
| <template if="{{ event.eventType == 'ExceptionThrown' }}">
|
| at exception
|
| </template>
|
|
|
| <br><br>
|
| - <action-link callback="{{ resume }}" label="resume" color="white">
|
| - </action-link>
|
| - <action-link callback="{{ stepInto }}" label="step" color="white">
|
| - </action-link>
|
| - <action-link callback="{{ stepOver }}" label="step over"
|
| - color="white"></action-link>
|
| - <action-link callback="{{ stepOut }}" label="step out"
|
| - color="white"></action-link>
|
| + [<a class="link" on-click="{{ goto }}"
|
| + _href="{{ gotoLink('/debugger', event.isolate) }}">debug</a>]
|
| +
|
| <a class="boxclose" on-click="{{ closeItem }}">×</a>
|
| </div>
|
| </template>
|
|
|