2022-03-29 05:21:30 +02:00
|
|
|
<!-- there is always at least one button (by context/repo.go) -->
|
|
|
|
{{if $.CloneButtonShowHTTPS}}
|
|
|
|
<button class="ui basic clone button no-transition" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}">
|
2020-12-28 19:30:06 +01:00
|
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-03-29 05:21:30 +02:00
|
|
|
{{if $.CloneButtonShowSSH}}
|
|
|
|
<button class="ui basic clone button no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
2020-12-28 19:30:06 +01:00
|
|
|
SSH
|
|
|
|
</button>
|
|
|
|
{{end}}
|
2022-03-29 05:21:30 +02:00
|
|
|
<!-- the value will be updated by initRepoCloneLink, the code below is used to avoid UI flicking -->
|
2022-04-27 01:22:11 +02:00
|
|
|
<input id="repo-clone-url" value="" size="1" readonly>
|
2022-03-29 05:21:30 +02:00
|
|
|
<script>
|
|
|
|
(() => {
|
|
|
|
const proto = localStorage.getItem('repo-clone-protocol') || 'https';
|
|
|
|
const btn = document.getElementById(`repo-clone-${proto}`);
|
|
|
|
// it's ok if we don't find the btn here, initRepoCloneLink will take care of it
|
|
|
|
document.getElementById('repo-clone-url').value = btn ? btn.getAttribute('data-link') : '';
|
|
|
|
})();
|
|
|
|
</script>
|
2022-06-27 22:58:46 +02:00
|
|
|
<button class="ui basic icon button tooltip" id="clipboard-btn" data-content="{{.locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url">
|
2022-03-29 05:21:30 +02:00
|
|
|
{{svg "octicon-paste"}}
|
|
|
|
</button>
|