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

Commit

Permalink
release v0.7.18
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Nov 16, 2015
2 parents c532ebd + fedfe02 commit acdd43a
Show file tree
Hide file tree
Showing 15 changed files with 129 additions and 115 deletions.
18 changes: 9 additions & 9 deletions CustomElements.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.17
// @version 0.7.18
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down Expand Up @@ -394,7 +394,8 @@ if (typeof WeakMap === "undefined") {
Object.defineProperty(this, "defaultPrevented", {
get: function() {
return true;
}
},
configurable: true
});
};
}
Expand Down Expand Up @@ -678,24 +679,23 @@ window.CustomElements.addModule(function(scope) {
return root;
};
}
function upgradeAll(doc) {
if (HTMLTemplateElement && HTMLTemplateElement.bootstrap) {
HTMLTemplateElement.bootstrap(doc);
}
addedNode(doc);
}
scope.watchShadow = watchShadow;
scope.upgradeDocumentTree = upgradeDocumentTree;
scope.upgradeDocument = upgradeDocument;
scope.upgradeSubtree = addedSubtree;
scope.upgradeAll = upgradeAll;
scope.upgradeAll = addedNode;
scope.attached = attached;
scope.takeRecords = takeRecords;
});

window.CustomElements.addModule(function(scope) {
var flags = scope.flags;
function upgrade(node, isAttached) {
if (node.localName === "template") {
if (window.HTMLTemplateElement && HTMLTemplateElement.decorate) {
HTMLTemplateElement.decorate(node);
}
}
if (!node.__upgraded__ && node.nodeType === Node.ELEMENT_NODE) {
var is = node.getAttribute("is");
var definition = scope.getRegisteredDefinition(node.localName) || scope.getRegisteredDefinition(is);
Expand Down
4 changes: 2 additions & 2 deletions CustomElements.min.js

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions HTMLImports.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.17
// @version 0.7.18
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down Expand Up @@ -394,7 +394,8 @@ if (typeof WeakMap === "undefined") {
Object.defineProperty(this, "defaultPrevented", {
get: function() {
return true;
}
},
configurable: true
});
};
}
Expand Down
4 changes: 2 additions & 2 deletions HTMLImports.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion MutationObserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.17
// @version 0.7.18
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down
2 changes: 1 addition & 1 deletion MutationObserver.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions ShadowDOM.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Code distributed by Google as part of the polymer project is also
* subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
// @version 0.7.17
// @version 0.7.18
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down Expand Up @@ -1131,7 +1131,8 @@ window.ShadowDOMPolyfill = {};
Object.defineProperty(this, "defaultPrevented", {
get: function() {
return true;
}
},
configurable: true
});
};
}
Expand Down
8 changes: 4 additions & 4 deletions ShadowDOM.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webcomponentsjs",
"main": "webcomponents.js",
"version": "0.7.17",
"version": "0.7.18",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"
Expand Down
Loading

0 comments on commit acdd43a

Please sign in to comment.