Chromium Code Reviews| Index: samples/third_party/todomvc/web/router_options.dart |
| diff --git a/samples/third_party/todomvc/web/router_options.dart b/samples/third_party/todomvc/web/router_options.dart |
| index 0daddd0196892fbb7ffa2a24fa8df81f4d2ef67e..48c5f690ed51bf61863d1a0c39fbb908ac3b0e59 100644 |
| --- a/samples/third_party/todomvc/web/router_options.dart |
| +++ b/samples/third_party/todomvc/web/router_options.dart |
| @@ -16,11 +16,10 @@ import 'package:polymer/polymer.dart'; |
| * `class="selected"`, and other links will have that CSS class removed. |
| */ |
| @CustomTag('router-options') |
| -class RouterOptions extends PolymerElement { |
| - |
| - factory RouterOptions() => new Element.tag('router-options'); |
|
Jennifer Messerly
2013/10/17 02:04:35
even though it's unused, should we keep this to sh
Siggi Cherem (dart-lang)
2013/10/17 02:37:40
Done. Now it becomes:
factory RouterOptions() => n
|
| - |
| - RouterOptions.created() : super.created(); |
| +class RouterOptions extends UListElement with Polymer, ObservableMixin { |
| + RouterOptions.created() : super.created() { |
| + polymerCreated(); |
| + } |
| bool get applyAuthorStyles => true; |
| var _sub; |