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

Unified Diff: example/todomvc/web/editable_label.dart

Issue 19497002: Reducing the amount of code we generate in the compiler: We still continue (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years, 5 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: example/todomvc/web/editable_label.dart
diff --git a/example/todomvc/web/editable_label.dart b/example/todomvc/web/editable_label.dart
index 86c0d6fe64d5dc819c92b7275938ecf6bc5c6482..3d72ed713d03da1e54ed53c8780355e5d2a20eef 100644
--- a/example/todomvc/web/editable_label.dart
+++ b/example/todomvc/web/editable_label.dart
@@ -15,6 +15,7 @@ import 'package:polymer/polymer.dart';
class EditableLabel extends PolymerElement with ObservableMixin {
@observable bool editing = false;
@observable String value = '';
+ bool get applyAuthorStyles => true;
// TODO(jmesserly): replace this with allowing not-operator in templates.
bool get notEditing => !editing;

Powered by Google App Engine
This is Rietveld 408576698