Format code

This commit is contained in:
shinigami-eyes 2019-07-28 07:31:24 +02:00
parent 1ce13a27d7
commit 9f190fb1d2

View File

@ -129,7 +129,7 @@ var lastRightClickedElement: HTMLElement = null;
var lastAppliedYouTubeUrl: string = null; var lastAppliedYouTubeUrl: string = null;
var lastAppliedYouTubeTitle: string = null; var lastAppliedYouTubeTitle: string = null;
function updateTwitterClasses(){ function updateTwitterClasses() {
for (const a of document.querySelectorAll('a')) { for (const a of document.querySelectorAll('a')) {
if (a.assignedCssLabel && !a.classList.contains('has-assigned-label')) { if (a.assignedCssLabel && !a.classList.contains('has-assigned-label')) {
a.classList.add('assigned-label-' + a.assignedCssLabel); a.classList.add('assigned-label-' + a.assignedCssLabel);
@ -367,14 +367,14 @@ function getIdentifierFromElementImpl(element: HTMLAnchorElement): string {
p = p.parentElement; p = p.parentElement;
} }
} }
} else if(hostname == 'twitter.com') { } else if (hostname == 'twitter.com') {
if (dataset && dataset.expandedUrl) return getIdentifier(dataset.expandedUrl); if (dataset && dataset.expandedUrl) return getIdentifier(dataset.expandedUrl);
if (element.href.startsWith('https://t.co/')) { if (element.href.startsWith('https://t.co/')) {
const title = element.title; const title = element.title;
if (title && (title.startsWith('http://') || title.startsWith('https://'))) if (title && (title.startsWith('http://') || title.startsWith('https://')))
return getIdentifier(title); return getIdentifier(title);
const content = element.textContent; const content = element.textContent;
if(!content.includes(' ') && content.includes('.')) if (!content.includes(' ') && content.includes('.'))
return getIdentifier('http://' + content); return getIdentifier('http://' + content);
} }
} }
@ -469,10 +469,10 @@ function getIdentifierFromURLImpl(url: URL): string {
const m = captureRegex(host, /([a-zA-Z0-9\-]*)\.blogspot/); const m = captureRegex(host, /([a-zA-Z0-9\-]*)\.blogspot/);
if (m) return m + '.blogspot.com'; if (m) return m + '.blogspot.com';
else return null; else return null;
} else if(host.includes('google.')){ } else if (host.includes('google.')) {
if(url.pathname == '/search' && searchParams.get('stick') && !searchParams.get('tbm') && !searchParams.get('start')){ if (url.pathname == '/search' && searchParams.get('stick') && !searchParams.get('tbm') && !searchParams.get('start')) {
const q = searchParams.get('q'); const q = searchParams.get('q');
if(q) return 'wikipedia.org/wiki/' + q.replace(/\s/g, '_'); if (q) return 'wikipedia.org/wiki/' + q.replace(/\s/g, '_');
} }
return null; return null;
} else { } else {