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

update scheduled tasks page

This commit is contained in:
Luke Pulverenti 2015-10-12 15:09:56 -04:00
parent f73a917448
commit 1ac9bfe5aa
65 changed files with 8424 additions and 48 deletions

View file

@ -0,0 +1,36 @@
{
"name": "get-style-property",
"main": "get-style-property.js",
"version": "1.0.4",
"homepage": "https://github.com/desandro/get-style-property",
"authors": [
"David DeSandro <desandrocodes@gmail.com>"
],
"description": "quick & dirty CSS property testing",
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"CSS",
"DOM"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"_release": "1.0.4",
"_resolution": {
"type": "version",
"tag": "v1.0.4",
"commit": "34fc5e4a0f252964ed2790138b8d7d30d04b55c1"
},
"_source": "git://github.com/desandro/get-style-property.git",
"_target": "~1.0.4",
"_originalSource": "get-style-property"
}

View file

@ -0,0 +1,27 @@
{
"name": "get-style-property",
"main": "get-style-property.js",
"version": "1.0.4",
"homepage": "https://github.com/desandro/get-style-property",
"authors": [
"David DeSandro <desandrocodes@gmail.com>"
],
"description": "quick & dirty CSS property testing",
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"CSS",
"DOM"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}

View file

@ -0,0 +1,8 @@
{
"name": "get-style-property",
"repo": "desandro/get-style-property",
"description": "Quick and dirty CSS property testing",
"version": "1.0.4",
"scripts": ["get-style-property.js"],
"main": "get-style-property.js"
}

View file

@ -0,0 +1,55 @@
/*!
* getStyleProperty v1.0.4
* original by kangax
* http://perfectionkills.com/feature-testing-css-properties/
* MIT license
*/
/*jshint browser: true, strict: true, undef: true */
/*global define: false, exports: false, module: false */
( function( window ) {
'use strict';
var prefixes = 'Webkit Moz ms Ms O'.split(' ');
var docElemStyle = document.documentElement.style;
function getStyleProperty( propName ) {
if ( !propName ) {
return;
}
// test standard property first
if ( typeof docElemStyle[ propName ] === 'string' ) {
return propName;
}
// capitalize
propName = propName.charAt(0).toUpperCase() + propName.slice(1);
// test vendor specific properties
var prefixed;
for ( var i=0, len = prefixes.length; i < len; i++ ) {
prefixed = prefixes[i] + propName;
if ( typeof docElemStyle[ prefixed ] === 'string' ) {
return prefixed;
}
}
}
// transport
if ( typeof define === 'function' && define.amd ) {
// AMD
define( function() {
return getStyleProperty;
});
} else if ( typeof exports === 'object' ) {
// CommonJS for Component
module.exports = getStyleProperty;
} else {
// browser global
window.getStyleProperty = getStyleProperty;
}
})( window );

View file

@ -0,0 +1,23 @@
{
"name": "desandro-get-style-property",
"version": "1.0.4",
"description": "Quick and dirty CSS property testing",
"main": "get-style-property.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/desandro/get-style-property.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/desandro/get-style-property/issues"
},
"homepage": "https://github.com/desandro/get-style-property",
"keywords": [
"CSS",
"DOM"
],
"author": "David DeSandro"
}