| Index: third_party/polymer/v1_0/components-chromium/polymer/polymer-mini-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/polymer/polymer-mini-extracted.js b/third_party/polymer/v1_0/components-chromium/polymer/polymer-mini-extracted.js
|
| index 1bb9c0230c733c6beb57083cef30670c2c45d190..013f5359315d78668f929b64ad9f93efffc435d0 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/polymer/polymer-mini-extracted.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/polymer/polymer-mini-extracted.js
|
| @@ -1333,7 +1333,11 @@ get localTarget() {
|
| return this.event.target;
|
| },
|
| get path() {
|
| -return this.event.path;
|
| +var path = this.event.path;
|
| +if (!Array.isArray(path)) {
|
| +path = Array.prototype.slice.call(path);
|
| +}
|
| +return path;
|
| }
|
| };
|
| } else {
|
|
|