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

Unified Diff: lib/iron_media_query.dart

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 2 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
« no previous file with comments | « lib/iron_list.dart ('k') | lib/iron_overlay_behavior.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/iron_media_query.dart
diff --git a/lib/iron_media_query.dart b/lib/iron_media_query.dart
index 6963239bd57cb0b9cc5e4e32c8341e76a96c9ffc..b7cd331a0134cba7dc917b8558b72a3d152e2e92 100644
--- a/lib/iron_media_query.dart
+++ b/lib/iron_media_query.dart
@@ -29,8 +29,8 @@ class IronMediaQuery extends HtmlElement with CustomElementProxyMixin, PolymerBa
bool get queryMatches => jsElement[r'queryMatches'];
set queryMatches(bool value) { jsElement[r'queryMatches'] = value; }
- queryChanged(query) =>
- jsElement.callMethod('queryChanged', [query]);
+ queryChanged() =>
+ jsElement.callMethod('queryChanged', []);
queryHandler(mq) =>
jsElement.callMethod('queryHandler', [mq]);
« no previous file with comments | « lib/iron_list.dart ('k') | lib/iron_overlay_behavior.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698