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

Unified Diff: third_party/polymer/v1_0/components-chromium/iron-selector/iron-selectable-extracted.js

Issue 1984963002: Roll Polymer elements (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/v1_0/components-chromium/iron-selector/iron-selectable-extracted.js
diff --git a/third_party/polymer/v1_0/components-chromium/iron-selector/iron-selectable-extracted.js b/third_party/polymer/v1_0/components-chromium/iron-selector/iron-selectable-extracted.js
index f19678b1e50530242cd41806f2f592a0ab01602c..78223d36eefa836531dfeb3d5cbae9fe1919ee83 100644
--- a/third_party/polymer/v1_0/components-chromium/iron-selector/iron-selectable-extracted.js
+++ b/third_party/polymer/v1_0/components-chromium/iron-selector/iron-selectable-extracted.js
@@ -23,8 +23,8 @@
/**
* 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
*/
@@ -331,7 +331,7 @@
// 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) {
@@ -340,7 +340,7 @@
// 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