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.23
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Nov 2, 2016
2 parents 50f9751 + 9d43da6 commit 9d6cb3a
Show file tree
Hide file tree
Showing 16 changed files with 312 additions and 247 deletions.
4 changes: 2 additions & 2 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.22
// @version 0.7.23
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down Expand Up @@ -351,7 +351,7 @@ if (typeof WeakMap === "undefined") {

(function(scope) {
"use strict";
if (!window.performance) {
if (!(window.performance && window.performance.now)) {
var start = Date.now();
window.performance = {
now: function() {
Expand Down
4 changes: 2 additions & 2 deletions CustomElements.min.js

Large diffs are not rendered by default.

4 changes: 2 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.22
// @version 0.7.23
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down Expand Up @@ -351,7 +351,7 @@ if (typeof WeakMap === "undefined") {

(function(scope) {
"use strict";
if (!window.performance) {
if (!(window.performance && window.performance.now)) {
var start = Date.now();
window.performance = {
now: function() {
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.22
// @version 0.7.23
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down
4 changes: 2 additions & 2 deletions MutationObserver.min.js

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
webcomponents.js
================

[![Join the chat at https://gitter.im/webcomponents/webcomponentsjs](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/webcomponents/webcomponentsjs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/webcomponents/webcomponentsjs.svg?branch=master)](https://travis-ci.org/webcomponents/webcomponentsjs)

A suite of polyfills supporting the [Web Components](http://webcomponents.org) specs:

Expand Down
5 changes: 4 additions & 1 deletion 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.22
// @version 0.7.23
if (typeof WeakMap === "undefined") {
(function() {
var defineProperty = Object.defineProperty;
Expand Down Expand Up @@ -165,6 +165,9 @@ window.ShadowDOMPolyfill = {};
}
function getDescriptor(source, name) {
try {
if (source === window && name === "showModalDialog") {
return dummyDescriptor;
}
return Object.getOwnPropertyDescriptor(source, name);
} catch (ex) {
return dummyDescriptor;
Expand Down
6 changes: 3 additions & 3 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.22",
"version": "0.7.23",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"
Expand Down
Loading

0 comments on commit 9d6cb3a

Please sign in to comment.