44f91e1401
BUG= R=jmesserly@google.com Review URL: https://codereview.chromium.org//74063004 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@30327 260f80e4-7a28-3924-810f-c04153c831b5
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
for details. All rights reserved. Use of this source code is governed by a
|
|
BSD-style license that can be found in the LICENSE file.
|
|
-->
|
|
|
|
<html>
|
|
<body>
|
|
<template id="test" bind="{{ mouseDown | count }}">
|
|
Clicks: {{ value }}
|
|
</template>
|
|
<script type="application/dart">
|
|
import 'dart:async';
|
|
import 'dart:html';
|
|
import 'package:polymer_expressions/polymer_expressions.dart';
|
|
import 'package:polymer_expressions/async.dart';
|
|
import 'package:template_binding/template_binding.dart';
|
|
import 'package:observe/observe.dart';
|
|
|
|
count(StreamBinding s) {
|
|
var box = new ObservableBox();
|
|
box.value = 0;
|
|
s.stream.listen((e) { box.value++; });
|
|
return box;
|
|
}
|
|
|
|
main() {
|
|
var globals = {
|
|
'mouseDown': document.onMouseDown,
|
|
'count': count,
|
|
};
|
|
|
|
templateBind(query('#test'))
|
|
..bindingDelegate = new PolymerExpressions(globals: globals)
|
|
..model = null;
|
|
}
|
|
</script>
|
|
<script src="packages/browser/dart.js"></script>
|
|
</body>
|
|
</html>
|