fixup! chore: add precommit hook for testing code style (#1448)

This commit is contained in:
Charles Kerr 2020-09-14 13:02:03 -05:00
parent be219ddee0
commit 017fa1cf1e
1 changed files with 1 additions and 2 deletions

View File

@ -435,8 +435,7 @@ function Inspector(controller) {
if (!str) {
str = none;
}
const uri = new URL(str);
if (uri.protocol == 'http:' || uri.protocol == 'https:') {
if (str.startsWith('https://') || str.startsWith('http://')) {
str = encodeURI(str);
setInnerHTML(e.comment_lb, '<a href="' + str + '" target="_blank" >' + str + '</a>');
} else {