Skip to content

Commit

Permalink
create click event for portal url links
Browse files Browse the repository at this point in the history
  • Loading branch information
MinjiK committed Dec 18, 2023
1 parent 546a6f4 commit fb7bd8d
Showing 1 changed file with 26 additions and 15 deletions.
41 changes: 26 additions & 15 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
{#-
This file was automatically generated - do not edit
-#}
This file was automatically generated - do not edit
-#}

{% extends "base.html" %}
{% block extrahead %}
<script>
if (window.location.hostname === 'amadeus4dev.github.io') {
console.log(window.location.hostname);
const path = window.location.pathname;
const redirectPattern = /^\/([^/]+)/;
const redirectUrl = path.replace(redirectPattern, 'https://developers.amadeus.com/self-service/apis-docs/guides/$1');
document.write(`<meta http-equiv="refresh" content="0;url=${redirectUrl}" />
<link rel="canonical" href="${redirectUrl}" />`);
}
</script>
{% endblock %}
{% block extrahead %}
<script>
if (window.location.hostname === 'amadeus4dev.github.io') {
console.log(window.location.hostname);
const path = window.location.pathname;
const redirectPattern = /^\/([^/]+)/;
const redirectUrl = path.replace(redirectPattern, 'https://developers.amadeus.com/self-service/apis-docs/guides/$1');
document.write(`<meta http-equiv="refresh" content="0;url=${redirectUrl}" />`);
}

//event
document.addEventListener('click', function (event) {
var target = event.target;
if (target.tagName === 'A') {
var href = target.getAttribute('href');
if (href.startsWith('https://developers.amadeus.com')) {
event.preventDefault();
window.open(href, '_blank');
}
}
});
</script>
{% endblock %}

0 comments on commit fb7bd8d

Please sign in to comment.