Oops, this doesn't exist in Chrome.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3817 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2022-02-04 02:32:00 +00:00
parent 91339dc8a7
commit e85ee5766b

View File

@ -835,7 +835,7 @@ window.addEventListener("load", function() {
description.innerText = tag.dataset.tip; description.innerText = tag.dataset.tip;
tooltip.appendChild(description); tooltip.appendChild(description);
} }
var parts = tag.accessKeyLabel.split('+'); var parts = tag.accessKeyLabel ? tag.accessKeyLabel.split('+') : [];
for (var i = 0; i < parts.length; i++) for (var i = 0; i < parts.length; i++)
{ {
var key = parts[i]; var key = parts[i];