Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
safelinks-cleaner
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
safelinks
safelinks-cleaner
Merge requests
!2
Resolve "Tooltips break some links"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Tooltips break some links"
1-tooltips-break-some-links
into
master
Overview
0
Commits
1
Pipelines
2
Changes
5
Merged
David Byers
requested to merge
1-tooltips-break-some-links
into
master
4 years ago
Overview
0
Commits
1
Pipelines
2
Changes
5
Expand
Closes
#1 (closed)
Edited
4 years ago
by
David Byers
0
0
Merge request reports
Viewing commit
82dcfff6
Show latest version
5 files
+
171
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
82dcfff6
Create tooltips using Javascript so the DOM can be modified in a less intrusive way.
· 82dcfff6
David Byers
authored
4 years ago
extension/common.js
+
34
−
0
Options
@@ -22,11 +22,33 @@
// Shared code
/**
* Regexp that matches safe links. The original URL must be collected
* in match group 1.
*/
const
safelinksRegexp
=
new
RegExp
(
'
https?://[^.]+[.]safelinks[.]protection[.]outlook[.]com/[?]url=([^&]+)&.*
'
,
'
gi
'
);
/**
* The ID for the popup element that is added to the HTML document.
*/
const
safelinksPopupId
=
'
safelinks-cleaner-thunderbird-popup
'
;
/**
* The class that is added to the popup when visible.
*/
const
safelinksPopupVisibleClass
=
'
safelinks-cleaner-thunderbird-popup-visible
'
;
/**
* Return the original URL for a safe link.
* @param {string} link - The safe link.
* @returns {string} The original link or the safe link if there was an error.
*/
function
untangleLink
(
link
)
{
return
link
.
replaceAll
(
safelinksRegexp
,
(
match
,
url
)
=>
{
@@ -40,10 +62,22 @@ function untangleLink(link) {
});
}
/**
* Check if a link is a safe link.
* @param {string} link - The URL to check.
* @returns {boolean} Returns true if the link is a safe link.
*/
function
isTangledLink
(
link
)
{
return
link
.
match
(
safelinksRegexp
);
}
/**
* Return the text nodes under a DOM element.
* @param {Element} elem - The element to return text nodes for.
* @returns {Element[]} The text elements under elem.
*/
function
getTextNodes
(
elem
)
{
var
result
=
[];
if
(
elem
)
{
Loading