mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-11 05:36:34 +01:00
15 lines
654 B
HTML
Executable File
15 lines
654 B
HTML
Executable File
<div class="git_checkout_remote_area">
|
|
<div class="content">
|
|
<label>Checkout <span id="git_remote"></span></label>
|
|
Remote branches: <select id="git_remote_branches" onchange="onChangeCombobox();"></select>
|
|
New branch: <input type="text" id="git_new_branch">
|
|
</div>
|
|
<footer>
|
|
<button onclick="codiad.CodeGit.checkoutRemote(); return false;">Checkout</button>
|
|
<button onclick="codiad.CodeGit.showDialog('overview', codiad.CodeGit.location); return false;">Close</button>
|
|
</footer>
|
|
<script>
|
|
codiad.CodeGit.getRemoteBranches();
|
|
$('#git_remote_branches').focus();
|
|
</script>
|
|
</div> |