mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
config.ts: Fix followpagepatterns
14d7acc5
accidentally broke the regexes used by followpage. This commit
fixes them.
This commit is contained in:
parent
97416e3510
commit
0fcef90a78
1 changed files with 2 additions and 2 deletions
|
@ -371,8 +371,8 @@ class default_config {
|
|||
* Edit these if you want to add, e.g. other language support.
|
||||
*/
|
||||
followpagepatterns = {
|
||||
next: "^(next|newer\\b|»|>>|more",
|
||||
prev: "^(prev(ious?|older\\b|«|<<",
|
||||
next: "^(next|newer)\\b|»|>>|more",
|
||||
prev: "^(prev(ious)?|older)\\b|«|<<",
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue