Skip to content

Commit

Permalink
release v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Jul 16, 2015
1 parent 953fcba commit b39d001
Show file tree
Hide file tree
Showing 5 changed files with 190 additions and 151 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "polymer",
"version": "1.0.6",
"version": "1.0.7",
"main": [
"polymer.html"
],
Expand Down
20 changes: 10 additions & 10 deletions build.log
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
BUILD LOG
---------
Build Time: 2015-07-09T15:17:21-0700
Build Time: 2015-07-16T14:37:31-0700

NODEJS INFORMATION
==================
nodejs: v2.3.3
nodejs: v2.3.4
del: 1.2.0
gulp-audit: 1.0.0
gulp: 3.9.0
gulp-audit: 1.0.0
gulp-bump: 0.3.1
gulp-rename: 1.2.2
gulp-vulcanize: 6.0.1
gulp-replace: 0.5.3
lazypipe: 0.2.3
gulp-vulcanize: 6.0.1
minimist: 1.1.1
lazypipe: 0.2.4
polyclean: 1.2.0
run-sequence: 1.1.0
run-sequence: 1.1.1
semver: 4.3.6
nodegit: 0.4.1

REPO REVISIONS
==============
polymer: 4d98572c910966f24998cf1b7c1e57c08e7c8db5
polymer: 3d56eb0c97eb1ef90ec6942aca364d279377ff43

BUILD HASHES
============
polymer-mini.html: d7f4428c01977dbf3079c8561ea7d1799d8cec08
polymer-micro.html: 52097d168b0e043734c5205d51c494e8831a7257
polymer.html: e50c8f2343336092402b2312cd2134a02894938e
polymer-mini.html: 2429dd9d7909014a82cca9f81b8df239fc5a0599
polymer-micro.html: 924b916bacfafd1a166c10fce29eab24ebd02717
polymer.html: dbb7a228a8facf071dea38e4db2415a9a6becfc0
25 changes: 17 additions & 8 deletions polymer-micro.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@
return ctor;
};
var desugar = function (prototype) {
prototype = Polymer.Base.chainObject(prototype, Polymer.Base);
var base = Polymer.Base;
if (prototype.extends) {
base = Polymer.Base._getExtendedPrototype(prototype.extends);
}
prototype = Polymer.Base.chainObject(prototype, base);
prototype.registerCallback();
return prototype.constructor;
};
Expand Down Expand Up @@ -92,6 +96,7 @@
}
});
Polymer.Base = {
__isPolymerInstance__: true,
_addFeature: function (feature) {
this.extend(this, feature);
},
Expand Down Expand Up @@ -161,6 +166,16 @@
return object;
};
Polymer.Base = Polymer.Base.chainObject(Polymer.Base, HTMLElement.prototype);
if (window.CustomElements) {
Polymer.instanceof = CustomElements.instanceof;
} else {
Polymer.instanceof = function (obj, ctor) {
return obj instanceof ctor;
};
}
Polymer.isInstance = function (obj) {
return Boolean(obj && obj.__isPolymerInstance__);
};
Polymer.telemetry.instanceCount = 0;
(function () {
var modules = {};
Expand Down Expand Up @@ -289,11 +304,6 @@
}
});
Polymer.Base._addFeature({
_prepExtends: function () {
if (this.extends) {
this.__proto__ = this._getExtendedPrototype(this.extends);
}
},
_getExtendedPrototype: function (tag) {
return this._getExtendedNativePrototype(tag);
},
Expand Down Expand Up @@ -506,13 +516,12 @@
}
}
});
Polymer.version = '1.0.6';
Polymer.version = '1.0.7';
Polymer.Base._addFeature({
_registerFeatures: function () {
this._prepIs();
this._prepAttributes();
this._prepBehaviors();
this._prepExtends();
this._prepConstructor();
},
_prepBehavior: function (b) {
Expand Down
9 changes: 4 additions & 5 deletions polymer-mini.html
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,7 @@
return n;
},
importNode: function (externalNode, deep) {
var doc = this.node instanceof HTMLDocument ? this.node : this.node.ownerDocument;
var doc = this.node instanceof Document ? this.node : this.node.ownerDocument;
var n = nativeImportNode.call(doc, externalNode, false);
if (deep) {
var c$ = factory(externalNode).childNodes;
Expand Down Expand Up @@ -941,15 +941,15 @@
return this.node.cloneNode(deep);
};
DomApi.prototype.importNode = function (externalNode, deep) {
var doc = this.node instanceof HTMLDocument ? this.node : this.node.ownerDocument;
var doc = this.node instanceof Document ? this.node : this.node.ownerDocument;
return doc.importNode(externalNode, deep);
};
DomApi.prototype.getDestinationInsertionPoints = function () {
var n$ = this.node.getDestinationInsertionPoints();
var n$ = this.node.getDestinationInsertionPoints && this.node.getDestinationInsertionPoints();
return n$ ? Array.prototype.slice.call(n$) : [];
};
DomApi.prototype.getDistributedNodes = function () {
var n$ = this.node.getDistributedNodes();
var n$ = this.node.getDistributedNodes && this.node.getDistributedNodes();
return n$ ? Array.prototype.slice.call(n$) : [];
};
DomApi.prototype._distributeParent = function () {
Expand Down Expand Up @@ -1407,7 +1407,6 @@
this._prepIs();
this._prepAttributes();
this._prepBehaviors();
this._prepExtends();
this._prepConstructor();
this._prepTemplate();
this._prepShady();
Expand Down
Loading

0 comments on commit b39d001

Please sign in to comment.