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

add recording images

This commit is contained in:
Luke Pulverenti 2016-11-30 14:50:39 -05:00
parent 1cf155be4a
commit 327d065973
7 changed files with 15 additions and 12 deletions

View file

@ -7,7 +7,8 @@ define([], function () {
var NamedRegExp = function (pattern, string) {
pattern = pattern.toString();
var regexp = [];
var groupRX = /\(\?\<(.*?)\>\s?(.*?)\)/i;
//var groupRX = /\(\?\<(.*?)\>\s?(.*?)\)/i;
var groupRX = /\(\?<(.*?)\>\s?(.*?)\)/i;
while (groupRX.test(pattern)) {
var match = groupRX.exec(pattern);