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

Unified Diff: third_party/polymer/components/iron-selector/iron-selectable.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: Created 4 years, 6 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
Index: third_party/polymer/components/iron-selector/iron-selectable.html
diff --git a/third_party/polymer/components/iron-selector/iron-selectable.html b/third_party/polymer/components/iron-selector/iron-selectable.html
index 4a5ae16203b7fc9a121c524e601df404653a260b..25cfe91e3d8ca1e11eb7b8285ca60185136434b5 100644
--- a/third_party/polymer/components/iron-selector/iron-selectable.html
+++ b/third_party/polymer/components/iron-selector/iron-selectable.html
@@ -38,8 +38,8 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
/**
* Fired when the list of selectable items changes (e.g., items are
- * added or removed). The detail of the event is a list of mutation
- * records that describe what changed.
+ * added or removed). The detail of the event is a mutation record that
+ * describes what changed.
*
* @event iron-items-changed
*/
@@ -346,7 +346,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
// observe items change under the given node.
_observeItems: function(node) {
- return Polymer.dom(node).observeNodes(function(mutations) {
+ return Polymer.dom(node).observeNodes(function(mutation) {
this._updateItems();
if (this._shouldUpdateSelection) {
@@ -355,7 +355,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
// Let other interested parties know about the change so that
// we don't have to recreate mutation observers everywhere.
- this.fire('iron-items-changed', mutations, {
+ this.fire('iron-items-changed', mutation, {
bubbles: false,
cancelable: false
});

Powered by Google App Engine
This is Rietveld 408576698