Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
validata-ui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
19
Issues
19
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Validata
validata-ui
Commits
ce99421d
Commit
ce99421d
authored
Jun 26, 2019
by
Pierre Dittgen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Open error buble links in new tab/window
parent
6295d2f5
Pipeline
#1116
failed with stage
in 4 minutes and 58 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
validata_ui/templates/validation_report.html
validata_ui/templates/validation_report.html
+10
-0
No files found.
validata_ui/templates/validation_report.html
View file @
ce99421d
...
...
@@ -176,5 +176,15 @@ $('[data-toggle="popover"]').popover({
}
},
100
);
});
// Open links found in error description in a new window/tab
$
(
'
body
'
).
on
(
'
mouseover
'
,
'
div.popover a
'
,
function
()
{
$
(
this
).
prop
(
'
title
'
,
'
Ouvrir dans une nouvelle fenêtre
'
);
});
$
(
'
body
'
).
on
(
'
click
'
,
'
div.popover a
'
,
function
()
{
var
url
=
$
(
this
).
prop
(
'
href
'
);
window
.
open
(
url
,
'
_blank
'
)
return
false
;
});
</script>
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment