| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:html'; | 5 import 'dart:html'; |
| 6 | 6 |
| 7 import 'package:observatory/app.dart'; | 7 import 'package:observatory/app.dart'; |
| 8 import 'package:observatory/repositories.dart'; | 8 import 'package:observatory/repositories.dart'; |
| 9 import 'package:observatory/service_html.dart' show Field; | 9 import 'package:observatory/service_html.dart' show Field; |
| 10 import 'package:observatory/src/elements/field_ref.dart'; | 10 import 'package:observatory/src/elements/field_ref.dart'; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 new StyleElement() | 47 new StyleElement() |
| 48 ..text = ''' | 48 ..text = ''' |
| 49 field-ref-wrapped a[href]:hover { | 49 field-ref-wrapped a[href]:hover { |
| 50 text-decoration: underline; | 50 text-decoration: underline; |
| 51 } | 51 } |
| 52 field-ref-wrapped a[href] { | 52 field-ref-wrapped a[href] { |
| 53 color: #0489c3; | 53 color: #0489c3; |
| 54 text-decoration: none; | 54 text-decoration: none; |
| 55 }''', | 55 }''', |
| 56 new FieldRefElement(_field.isolate, _field, | 56 new FieldRefElement(_field.isolate, _field, |
| 57 new InstanceRepository(_field.isolate), | 57 new InstanceRepository(), |
| 58 queue: ObservatoryApplication.app.queue) | 58 queue: ObservatoryApplication.app.queue) |
| 59 ]; | 59 ]; |
| 60 } | 60 } |
| 61 } | 61 } |
| OLD | NEW |