1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-03-30 22:00:05 -04:00
parent 55511e7c07
commit 638a360cb2
11 changed files with 115 additions and 19 deletions

View file

@ -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",

View 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;
};
})();
}