From 8b866e6c64d620da6a48479986f5a34d6c446bb8 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Tue, 25 Sep 2018 10:45:52 -0400 Subject: [PATCH] Rm title association with li per #570 --- ipwb/assets/webui.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/ipwb/assets/webui.js b/ipwb/assets/webui.js index c1d1a242..4583dea6 100644 --- a/ipwb/assets/webui.js +++ b/ipwb/assets/webui.js @@ -32,9 +32,6 @@ function addURIListToDOM () { li.setAttribute('data-mime', memento['mime']) li.setAttribute('data-status', memento['status']) - if ('title' in memento) { - li.setAttribute('title', memento['title']) - } const isHTML = memento['mime'].toLowerCase().startsWith('text/html') const isARedirect = memento['status'][0] === '3'