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

Unified Diff: samples/swarm/swarm_ui_lib/touch/ClickBuster.dart

Issue 11361190: a === b -> identical(a, b) (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 1 month 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
« no previous file with comments | « samples/swarm/swarm_ui_lib/observable/observable.dart ('k') | samples/swarm/swarm_ui_lib/touch/FxUtil.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/swarm/swarm_ui_lib/touch/ClickBuster.dart
diff --git a/samples/swarm/swarm_ui_lib/touch/ClickBuster.dart b/samples/swarm/swarm_ui_lib/touch/ClickBuster.dart
index 309f995c286c84ecad8a0d78741cc4550688d143..c6f57d5ecdbc3cb9d2e3bbcefc5e77c3b7c31351 100644
--- a/samples/swarm/swarm_ui_lib/touch/ClickBuster.dart
+++ b/samples/swarm/swarm_ui_lib/touch/ClickBuster.dart
@@ -175,7 +175,7 @@ class ClickBuster {
// temporary "allowable zone".
// - The click handler captures the user's click event and allows it to
// propagate since the click falls in the "allowable zone".
- if (_coordinates === null) {
+ if (_coordinates == null) {
// Listen to clicks on capture phase so they can be busted before anything
// else gets a chance to handle them.
document.on.click.add((e) { _onClick(e); }, true);
« no previous file with comments | « samples/swarm/swarm_ui_lib/observable/observable.dart ('k') | samples/swarm/swarm_ui_lib/touch/FxUtil.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698