mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
HTML Export: Ignore case when searching for tags
Fixes #934 Signed-off-by: Sander Kleijwegt <sander@myowndomain.nl> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a241393e7b
commit
a02ea68582
1 changed files with 1 additions and 1 deletions
|
@ -628,7 +628,7 @@ SearchModule.prototype.Enter_search_tag = function(tags, diveno)
|
|||
if (!tags)
|
||||
return;
|
||||
for (var i = 0; i < tags.length; i++) {
|
||||
insertIn(tags[i], diveno, this.head);
|
||||
insertIn(tags[i].toLowerCase(), diveno, this.head);
|
||||
numberofwords++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue