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

Unified Diff: example/explainer/counter.html

Issue 11465028: rename web_components -> web_ui (Closed) Base URL: https://github.com/dart-lang/web-ui.git@master
Patch Set: Created 8 years 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/explainer/counter.html
diff --git a/example/explainer/counter.html b/example/explainer/counter.html
index c367d19830fa62ee2a16ef2768e7f5c67200e5e9..2e3cef6f5916a8026c1b5607305c8a07e7934bfb 100644
--- a/example/explainer/counter.html
+++ b/example/explainer/counter.html
@@ -15,13 +15,13 @@ BSD-style license that can be found in the LICENSE file.
<div class="well">Hello counter: {{count}}</div>
<script type="application/dart">
import 'dart:html' as html;
- import 'package:web_components/watcher.dart' as watchers;
+ import 'package:web_ui/watcher.dart' as watchers;
int count;
main() {
count = 0;
html.window.setInterval(() {
count++;
- watchers.dispatch();
+ watchers.dispatch();
}, 1000);
}
</script>

Powered by Google App Engine
This is Rietveld 408576698