OLD | NEW |
---|---|
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="function_ref.html"> | 2 <link rel="import" href="function_ref.html"> |
3 <link rel="import" href="nav_bar.html"> | 3 <link rel="import" href="nav_bar.html"> |
4 <link rel="import" href="observatory_element.html"> | 4 <link rel="import" href="observatory_element.html"> |
5 <link rel="import" href="script_inset.html"> | 5 <link rel="import" href="script_inset.html"> |
6 <link rel="import" href="script_ref.html"> | 6 <link rel="import" href="script_ref.html"> |
7 | 7 |
8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in | 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in |
9 devtools --> | 9 devtools --> |
10 <polymer-element name="icon-expand-less" noscript> | 10 <polymer-element name="icon-expand-less" noscript> |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
50 .commandline { | 50 .commandline { |
51 flex: 0 0 auto; | 51 flex: 0 0 auto; |
52 } | 52 } |
53 </style> | 53 </style> |
54 | 54 |
55 <div class="container"> | 55 <div class="container"> |
56 <nav-bar> | 56 <nav-bar> |
57 <top-nav-menu></top-nav-menu> | 57 <top-nav-menu></top-nav-menu> |
58 <isolate-nav-menu isolate="{{ isolate }}"> | 58 <isolate-nav-menu isolate="{{ isolate }}"> |
59 </isolate-nav-menu> | 59 </isolate-nav-menu> |
60 <nav-menu link="{{ '/debugger' + isolate.link) }}" anchor="debugger" las t="{{ true }}"></nav-menu> | 60 <nav-menu link="{{ '/debugger/' + isolate.id) }}" anchor="debugger" last ="{{ true }}"></nav-menu> |
Cutch
2015/02/05 14:54:48
here too.
turnidge
2015/02/05 17:11:36
Done.
| |
61 <nav-control></nav-control> | 61 <nav-control></nav-control> |
62 </nav-bar> | 62 </nav-bar> |
63 | 63 |
64 <div id="stack" class="stack"> | 64 <div id="stack" class="stack"> |
65 <debugger-stack isolate="{{ isolate }}"></debugger-stack> | 65 <debugger-stack isolate="{{ isolate }}"></debugger-stack> |
66 </div> | 66 </div> |
67 <!-- | 67 <!-- |
68 <core-splitter direction="up" allowOverflow=true></core-splitter> | 68 <core-splitter direction="up" allowOverflow=true></core-splitter> |
69 <div class="console"> | 69 <div class="console"> |
70 <debugger-console isolate="{{ isolate }}"></debugger-console> | 70 <debugger-console isolate="{{ isolate }}"></debugger-console> |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
218 .textBox { | 218 .textBox { |
219 font: 400 16px 'Montserrat', sans-serif; | 219 font: 400 16px 'Montserrat', sans-serif; |
220 width: 100%; | 220 width: 100%; |
221 } | 221 } |
222 </style> | 222 </style> |
223 <input id="textBox" class="textBox" type="text" value="{{ text }}"> | 223 <input id="textBox" class="textBox" type="text" value="{{ text }}"> |
224 </template> | 224 </template> |
225 </polymer-element> | 225 </polymer-element> |
226 | 226 |
227 <script type="application/dart" src="debugger.dart"></script> | 227 <script type="application/dart" src="debugger.dart"></script> |
OLD | NEW |