Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: samples/third_party/todomvc/web/router_options.dart

Issue 27518006: Practically remove boot.js, adds the initialization from the Dart side of (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698