From e85ee5766bc5c557524e91c1a8ac58d94fcd122c Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Fri, 4 Feb 2022 02:32:00 +0000 Subject: [PATCH] Oops, this doesn't exist in Chrome. git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3817 ed5197a5-7fde-0310-b194-c3ffbd925b24 --- core/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/client.js b/core/client.js index 88f62b01..cfa111fc 100644 --- a/core/client.js +++ b/core/client.js @@ -835,7 +835,7 @@ window.addEventListener("load", function() { description.innerText = tag.dataset.tip; tooltip.appendChild(description); } - var parts = tag.accessKeyLabel.split('+'); + var parts = tag.accessKeyLabel ? tag.accessKeyLabel.split('+') : []; for (var i = 0; i < parts.length; i++) { var key = parts[i];