Merge pull request #8676 from nextcloud/8297_13

[stable13] Fix example regex for user agent matching
This commit is contained in:
Roeland Jago Douma 2018-03-06 11:54:27 +01:00 committed by GitHub
commit 242f0c0b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
var placeholder = 'Mozilla/5.0 User Agent';
if (check['operator'] === 'matches' || check['operator'] === '!matches') {
placeholder = '/^Mozilla\\/5\\.0 (.?)$/i';
placeholder = '/^Mozilla\\/5\\.0 (.*)$/i';
}
$(element).css('width', '250px')