mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
trim list name for id
This commit is contained in:
parent
07d08887f0
commit
20b33b6e12
1 changed files with 1 additions and 1 deletions
|
|
@ -6,7 +6,7 @@ function GenerateHtmlListName(listName) {
|
|||
return listName;
|
||||
} else {
|
||||
if (listName) {
|
||||
var html = "<h3 id=\"" + listName + "\">" + listName + "</h3>";
|
||||
var html = "<h3 id=\"" + TrimUrlSlug(listName) + "\">" + listName + "</h3>";
|
||||
return html;
|
||||
} else {
|
||||
return "";
|
||||
|
|
|
|||
Loading…
Reference in a new issue