mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
55511e7c07
commit
638a360cb2
11 changed files with 115 additions and 19 deletions
|
@ -16,12 +16,12 @@
|
|||
},
|
||||
"devDependencies": {},
|
||||
"ignore": [],
|
||||
"version": "1.1.93",
|
||||
"_release": "1.1.93",
|
||||
"version": "1.1.94",
|
||||
"_release": "1.1.94",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "1.1.93",
|
||||
"commit": "3d971009690236323becba5c24803780a345ea54"
|
||||
"tag": "1.1.94",
|
||||
"commit": "7e52c39c2c6a43b00b845509e8b227420042ce6f"
|
||||
},
|
||||
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
|
||||
"_target": "~1.1.5",
|
||||
|
|
23
dashboard-ui/bower_components/emby-webcomponents/objectassign.js
vendored
Normal file
23
dashboard-ui/bower_components/emby-webcomponents/objectassign.js
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
if (typeof Object.assign != 'function') {
|
||||
(function () {
|
||||
Object.assign = function (target) {
|
||||
'use strict';
|
||||
if (target === undefined || target === null) {
|
||||
throw new TypeError('Cannot convert undefined or null to object');
|
||||
}
|
||||
|
||||
var output = Object(target);
|
||||
for (var index = 1; index < arguments.length; index++) {
|
||||
var source = arguments[index];
|
||||
if (source !== undefined && source !== null) {
|
||||
for (var nextKey in source) {
|
||||
if (source.hasOwnProperty(nextKey)) {
|
||||
output[nextKey] = source[nextKey];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return output;
|
||||
};
|
||||
})();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue