Skip to content
This repository was archived by the owner on Sep 20, 2019. It is now read-only.

Commit c532ebd

Browse files
committed
release v0.7.17
2 parents 26216d9 + 4ac6825 commit c532ebd

15 files changed

+97
-79
lines changed

CustomElements.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Code distributed by Google as part of the polymer project is also
88
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
99
*/
10-
// @version 0.7.16
10+
// @version 0.7.17
1111
if (typeof WeakMap === "undefined") {
1212
(function() {
1313
var defineProperty = Object.defineProperty;
@@ -678,11 +678,17 @@ window.CustomElements.addModule(function(scope) {
678678
return root;
679679
};
680680
}
681+
function upgradeAll(doc) {
682+
if (HTMLTemplateElement && HTMLTemplateElement.bootstrap) {
683+
HTMLTemplateElement.bootstrap(doc);
684+
}
685+
addedNode(doc);
686+
}
681687
scope.watchShadow = watchShadow;
682688
scope.upgradeDocumentTree = upgradeDocumentTree;
683689
scope.upgradeDocument = upgradeDocument;
684690
scope.upgradeSubtree = addedSubtree;
685-
scope.upgradeAll = addedNode;
691+
scope.upgradeAll = upgradeAll;
686692
scope.attached = attached;
687693
scope.takeRecords = takeRecords;
688694
});

CustomElements.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

HTMLImports.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Code distributed by Google as part of the polymer project is also
88
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
99
*/
10-
// @version 0.7.16
10+
// @version 0.7.17
1111
if (typeof WeakMap === "undefined") {
1212
(function() {
1313
var defineProperty = Object.defineProperty;

HTMLImports.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MutationObserver.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Code distributed by Google as part of the polymer project is also
88
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
99
*/
10-
// @version 0.7.16
10+
// @version 0.7.17
1111
if (typeof WeakMap === "undefined") {
1212
(function() {
1313
var defineProperty = Object.defineProperty;

MutationObserver.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ShadowDOM.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Code distributed by Google as part of the polymer project is also
88
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
99
*/
10-
// @version 0.7.16
10+
// @version 0.7.17
1111
if (typeof WeakMap === "undefined") {
1212
(function() {
1313
var defineProperty = Object.defineProperty;

ShadowDOM.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "webcomponentsjs",
33
"main": "webcomponents.js",
4-
"version": "0.7.16",
4+
"version": "0.7.17",
55
"homepage": "http://webcomponents.org",
66
"authors": [
77
"The Polymer Authors"

0 commit comments

Comments
 (0)