mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
25 lines
1.1 KiB
Handlebars
25 lines
1.1 KiB
Handlebars
<!-- 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}}">
|
|
{{if UseHTTPS}}HTTPS{{else}}HTTP{{end}}
|
|
</button>
|
|
{{end}}
|
|
{{if $.CloneButtonShowSSH}}
|
|
<button class="ui basic clone button no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}">
|
|
SSH
|
|
</button>
|
|
{{end}}
|
|
<!-- the value will be updated by initRepoCloneLink, the code below is used to avoid UI flicking -->
|
|
<input id="repo-clone-url" value="" size="1" readonly>
|
|
<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>
|
|
<button class="ui basic icon button tooltip" id="clipboard-btn" data-content="{{.locale.Tr "copy_url"}}" data-clipboard-target="#repo-clone-url">
|
|
{{svg "octicon-paste"}}
|
|
</button>
|