| Index: third_party/polymer/v1_0/components/polymer/polymer-micro.html
|
| diff --git a/third_party/polymer/v1_0/components/polymer/polymer-micro.html b/third_party/polymer/v1_0/components/polymer/polymer-micro.html
|
| index 8e72da411663b2a0c6280e62cf9455f414f0c721..4bf423461b45f88656644dfe76dfcf631eee803c 100644
|
| --- a/third_party/polymer/v1_0/components/polymer/polymer-micro.html
|
| +++ b/third_party/polymer/v1_0/components/polymer/polymer-micro.html
|
| @@ -125,6 +125,12 @@ this.copyOwnProperty(n, api, prototype);
|
| }
|
| return prototype || api;
|
| },
|
| +mixin: function (target, source) {
|
| +for (var i in source) {
|
| +target[i] = source[i];
|
| +}
|
| +return target;
|
| +},
|
| copyOwnProperty: function (name, source, target) {
|
| var pd = Object.getOwnPropertyDescriptor(source, name);
|
| if (pd) {
|
| @@ -500,7 +506,7 @@ debouncer.stop();
|
| }
|
| }
|
| });
|
| -Polymer.version = '1.0.3';
|
| +Polymer.version = '1.0.5';
|
| Polymer.Base._addFeature({
|
| _registerFeatures: function () {
|
| this._prepIs();
|
|
|