| 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..1959ed4dbfc60957071b512ce08ae0099d616c31 100644
|
| --- a/samples/third_party/todomvc/web/router_options.dart
|
| +++ b/samples/third_party/todomvc/web/router_options.dart
|
| @@ -16,11 +16,12 @@ import 'package:polymer/polymer.dart';
|
| * `class="selected"`, and other links will have that CSS class removed.
|
| */
|
| @CustomTag('router-options')
|
| -class RouterOptions extends PolymerElement {
|
| +class RouterOptions extends UListElement with Polymer, ObservableMixin {
|
| + factory RouterOptions() => new Element.tag('ul', 'router-options');
|
|
|
| - factory RouterOptions() => new Element.tag('router-options');
|
| -
|
| - RouterOptions.created() : super.created();
|
| + RouterOptions.created() : super.created() {
|
| + polymerCreated();
|
| + }
|
|
|
| bool get applyAuthorStyles => true;
|
| var _sub;
|
|
|