mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
get api libs from bower
This commit is contained in:
parent
def418714f
commit
f36e664503
97 changed files with 16860 additions and 197 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webcomponentsjs",
|
||||
"main": "webcomponents.js",
|
||||
"version": "0.7.19",
|
||||
"version": "0.7.20",
|
||||
"homepage": "http://webcomponents.org",
|
||||
"authors": [
|
||||
"The Polymer Authors"
|
||||
|
@ -16,13 +16,13 @@
|
|||
"license": "BSD",
|
||||
"ignore": [],
|
||||
"devDependencies": {
|
||||
"web-component-tester": "~3.3.10"
|
||||
"web-component-tester": "^4.0.1"
|
||||
},
|
||||
"_release": "0.7.19",
|
||||
"_release": "0.7.20",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v0.7.19",
|
||||
"commit": "d2b2329a8453e93b0d0c4949bb83e7166088adaf"
|
||||
"tag": "v0.7.20",
|
||||
"commit": "ce9c8597696ec4bafc772c2126a3b1c7b0e948c0"
|
||||
},
|
||||
"_source": "git://github.com/Polymer/webcomponentsjs.git",
|
||||
"_target": "^0.7.18",
|
||||
|
|
|
@ -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.19
|
||||
// @version 0.7.20
|
||||
if (typeof WeakMap === "undefined") {
|
||||
(function() {
|
||||
var defineProperty = Object.defineProperty;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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.19
|
||||
// @version 0.7.20
|
||||
if (typeof WeakMap === "undefined") {
|
||||
(function() {
|
||||
var defineProperty = Object.defineProperty;
|
||||
|
@ -496,6 +496,7 @@ window.HTMLImports = window.HTMLImports || {
|
|||
if (importCount) {
|
||||
for (var i = 0, imp; i < importCount && (imp = imports[i]); i++) {
|
||||
if (isImportLoaded(imp)) {
|
||||
newImports.push(this);
|
||||
parsedCount++;
|
||||
checkDone();
|
||||
} else {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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.19
|
||||
// @version 0.7.20
|
||||
if (typeof WeakMap === "undefined") {
|
||||
(function() {
|
||||
var defineProperty = Object.defineProperty;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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.19
|
||||
// @version 0.7.20
|
||||
if (typeof WeakMap === "undefined") {
|
||||
(function() {
|
||||
var defineProperty = Object.defineProperty;
|
||||
|
@ -306,6 +306,7 @@ window.ShadowDOMPolyfill = {};
|
|||
});
|
||||
});
|
||||
}
|
||||
scope.addForwardingProperties = addForwardingProperties;
|
||||
scope.assert = assert;
|
||||
scope.constructorTable = constructorTable;
|
||||
scope.defineGetter = defineGetter;
|
||||
|
@ -3295,6 +3296,7 @@ window.ShadowDOMPolyfill = {};
|
|||
|
||||
(function(scope) {
|
||||
"use strict";
|
||||
var addForwardingProperties = scope.addForwardingProperties;
|
||||
var mixin = scope.mixin;
|
||||
var registerWrapper = scope.registerWrapper;
|
||||
var setWrapper = scope.setWrapper;
|
||||
|
@ -3319,6 +3321,10 @@ window.ShadowDOMPolyfill = {};
|
|||
unsafeUnwrap(this).texSubImage2D.apply(unsafeUnwrap(this), arguments);
|
||||
}
|
||||
});
|
||||
var OriginalWebGLRenderingContextBase = Object.getPrototypeOf(OriginalWebGLRenderingContext.prototype);
|
||||
if (OriginalWebGLRenderingContextBase !== Object.prototype) {
|
||||
addForwardingProperties(OriginalWebGLRenderingContextBase, WebGLRenderingContext.prototype);
|
||||
}
|
||||
var instanceProperties = /WebKit/.test(navigator.userAgent) ? {
|
||||
drawingBufferHeight: null,
|
||||
drawingBufferWidth: null
|
||||
|
@ -3405,7 +3411,10 @@ window.ShadowDOMPolyfill = {};
|
|||
var unwrappedActiveElement = unwrap(this).ownerDocument.activeElement;
|
||||
if (!unwrappedActiveElement || !unwrappedActiveElement.nodeType) return null;
|
||||
var activeElement = wrap(unwrappedActiveElement);
|
||||
while (!this.contains(activeElement)) {
|
||||
if (activeElement === this.host) {
|
||||
return null;
|
||||
}
|
||||
while (!this.contains(activeElement) && !this.host.contains(activeElement)) {
|
||||
while (activeElement.parentNode) {
|
||||
activeElement = activeElement.parentNode;
|
||||
}
|
||||
|
@ -4109,7 +4118,6 @@ window.ShadowDOMPolyfill = {};
|
|||
if (!unwrappedActiveElement || !unwrappedActiveElement.nodeType) return null;
|
||||
var activeElement = wrap(unwrappedActiveElement);
|
||||
while (!this.contains(activeElement)) {
|
||||
var lastHost = activeElement;
|
||||
while (activeElement.parentNode) {
|
||||
activeElement = activeElement.parentNode;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webcomponentsjs",
|
||||
"main": "webcomponents.js",
|
||||
"version": "0.7.19",
|
||||
"version": "0.7.20",
|
||||
"homepage": "http://webcomponents.org",
|
||||
"authors": [
|
||||
"The Polymer Authors"
|
||||
|
@ -16,6 +16,6 @@
|
|||
"license": "BSD",
|
||||
"ignore": [],
|
||||
"devDependencies": {
|
||||
"web-component-tester": "~3.3.10"
|
||||
"web-component-tester": "^4.0.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "webcomponents.js",
|
||||
"version": "0.7.19",
|
||||
"version": "0.7.20",
|
||||
"description": "webcomponents.js",
|
||||
"main": "webcomponents.js",
|
||||
"directories": {
|
||||
|
@ -15,6 +15,9 @@
|
|||
"bugs": {
|
||||
"url": "https://github.com/webcomponents/webcomponentsjs/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "wct"
|
||||
},
|
||||
"homepage": "http://webcomponents.org",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.8.8",
|
||||
|
@ -23,6 +26,6 @@
|
|||
"gulp-header": "^1.1.1",
|
||||
"gulp-uglify": "^1.0.1",
|
||||
"run-sequence": "^1.0.1",
|
||||
"web-component-tester": "^3"
|
||||
"web-component-tester": "^4.0.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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.19
|
||||
// @version 0.7.20
|
||||
(function() {
|
||||
window.WebComponents = window.WebComponents || {
|
||||
flags: {}
|
||||
|
@ -1143,6 +1143,7 @@ window.HTMLImports = window.HTMLImports || {
|
|||
if (importCount) {
|
||||
for (var i = 0, imp; i < importCount && (imp = imports[i]); i++) {
|
||||
if (isImportLoaded(imp)) {
|
||||
newImports.push(this);
|
||||
parsedCount++;
|
||||
checkDone();
|
||||
} else {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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.19
|
||||
// @version 0.7.20
|
||||
(function() {
|
||||
window.WebComponents = window.WebComponents || {
|
||||
flags: {}
|
||||
|
@ -352,6 +352,7 @@ if (WebComponents.flags.shadow) {
|
|||
});
|
||||
});
|
||||
}
|
||||
scope.addForwardingProperties = addForwardingProperties;
|
||||
scope.assert = assert;
|
||||
scope.constructorTable = constructorTable;
|
||||
scope.defineGetter = defineGetter;
|
||||
|
@ -3306,6 +3307,7 @@ if (WebComponents.flags.shadow) {
|
|||
})(window.ShadowDOMPolyfill);
|
||||
(function(scope) {
|
||||
"use strict";
|
||||
var addForwardingProperties = scope.addForwardingProperties;
|
||||
var mixin = scope.mixin;
|
||||
var registerWrapper = scope.registerWrapper;
|
||||
var setWrapper = scope.setWrapper;
|
||||
|
@ -3330,6 +3332,10 @@ if (WebComponents.flags.shadow) {
|
|||
unsafeUnwrap(this).texSubImage2D.apply(unsafeUnwrap(this), arguments);
|
||||
}
|
||||
});
|
||||
var OriginalWebGLRenderingContextBase = Object.getPrototypeOf(OriginalWebGLRenderingContext.prototype);
|
||||
if (OriginalWebGLRenderingContextBase !== Object.prototype) {
|
||||
addForwardingProperties(OriginalWebGLRenderingContextBase, WebGLRenderingContext.prototype);
|
||||
}
|
||||
var instanceProperties = /WebKit/.test(navigator.userAgent) ? {
|
||||
drawingBufferHeight: null,
|
||||
drawingBufferWidth: null
|
||||
|
@ -3414,7 +3420,10 @@ if (WebComponents.flags.shadow) {
|
|||
var unwrappedActiveElement = unwrap(this).ownerDocument.activeElement;
|
||||
if (!unwrappedActiveElement || !unwrappedActiveElement.nodeType) return null;
|
||||
var activeElement = wrap(unwrappedActiveElement);
|
||||
while (!this.contains(activeElement)) {
|
||||
if (activeElement === this.host) {
|
||||
return null;
|
||||
}
|
||||
while (!this.contains(activeElement) && !this.host.contains(activeElement)) {
|
||||
while (activeElement.parentNode) {
|
||||
activeElement = activeElement.parentNode;
|
||||
}
|
||||
|
@ -4112,7 +4121,6 @@ if (WebComponents.flags.shadow) {
|
|||
if (!unwrappedActiveElement || !unwrappedActiveElement.nodeType) return null;
|
||||
var activeElement = wrap(unwrappedActiveElement);
|
||||
while (!this.contains(activeElement)) {
|
||||
var lastHost = activeElement;
|
||||
while (activeElement.parentNode) {
|
||||
activeElement = activeElement.parentNode;
|
||||
}
|
||||
|
@ -5908,6 +5916,7 @@ window.HTMLImports = window.HTMLImports || {
|
|||
if (importCount) {
|
||||
for (var i = 0, imp; i < importCount && (imp = imports[i]); i++) {
|
||||
if (isImportLoaded(imp)) {
|
||||
newImports.push(this);
|
||||
parsedCount++;
|
||||
checkDone();
|
||||
} else {
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue