Skip to content

Commit e71a979

Browse files
committed
Allow all match as well
Signed-off-by: Michal Čihař <michal@cihar.com>
1 parent 454ae78 commit e71a979

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pmaweb/static/js/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function theme_load() {
2828
if (self.document.location.hash.length > 1) {
2929
hash = self.document.location.hash.substring(1);
3030
/* Check validity */
31-
if (hash.match(/^pma_[0-9]_[0-9]$/) === null) {
31+
if (hash.match(/^(pma_[0-9]_[0-9]|all)$/) === null) {
3232
hash = null;
3333
}
3434
}

0 commit comments

Comments
 (0)