| 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>
|
|
|