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

normalize rating to fsk

This commit is contained in:
Luke Pulverenti 2016-09-18 01:52:10 -04:00
parent 1f57d9b231
commit 2971ec0e69
86 changed files with 388 additions and 136 deletions

View file

@ -1,6 +1,6 @@
{
"name": "requirejs",
"version": "2.3.1",
"version": "2.3.2",
"ignore": [],
"homepage": "http://requirejs.org",
"authors": [
@ -14,11 +14,11 @@
"license": [
"MIT"
],
"_release": "2.3.1",
"_release": "2.3.2",
"_resolution": {
"type": "version",
"tag": "2.3.1",
"commit": "94785e8633448b668f292009fd2c31e3338a0074"
"tag": "2.3.2",
"commit": "5b5d3ea2c754898b645cfeaa8871bb92ba4f2790"
},
"_source": "https://github.com/jrburke/requirejs-bower.git",
"_target": "^2.1.22",

View file

@ -1,6 +1,6 @@
{
"name": "requirejs",
"version": "2.3.1",
"version": "2.3.2",
"ignore": [],
"homepage": "http://requirejs.org",
"authors": [

View file

@ -1,5 +1,5 @@
/** vim: et:ts=4:sw=4:sts=4
* @license RequireJS 2.3.1 Copyright jQuery Foundation and other contributors.
* @license RequireJS 2.3.2 Copyright jQuery Foundation and other contributors.
* Released under MIT license, https://github.com/requirejs/requirejs/blob/master/LICENSE
*/
//Not using strict: uneven strict support in browsers, #392, and causes
@ -11,7 +11,7 @@ var requirejs, require, define;
(function (global, setTimeout) {
var req, s, head, baseElement, dataMain, src,
interactiveScript, currentlyAddingScript, mainScript, subPath,
version = '2.3.1',
version = '2.3.2',
commentRegExp = /\/\*[\s\S]*?\*\/|([^:"'=]|^)\/\/.*$/mg,
cjsRequireRegExp = /[^.]\s*require\s*\(\s*["']([^'"\s]+)["']\s*\)/g,
jsSuffixRegExp = /\.js$/,
@ -2139,4 +2139,4 @@ var requirejs, require, define;
//Set up with config info.
req(cfg);
}(this, setTimeout));
}(this, (typeof setTimeout === 'undefined' ? undefined : setTimeout)));