mirror of
https://github.com/xevidos/codiad.git
synced 2025-01-13 00:11:55 +01:00
14 lines
No EOL
557 B
HTML
14 lines
No EOL
557 B
HTML
<div class="git_rename_branch_area">
|
|
<div class="content">
|
|
<label>Rename <span id="git_branch"></span></label>
|
|
<input type="text" id="git_new_name" placeholder="New name">
|
|
</div>
|
|
<footer>
|
|
<button onclick="codiad.CodeGit.renameBranch(); return false;">Rename</button>
|
|
<button onclick="codiad.CodeGit.showDialog('overview', codiad.CodeGit.location); return false;">Close</button>
|
|
</footer>
|
|
<script>
|
|
$('#git_new_name').focus();
|
|
$('#git_branch').text(codiad.CodeGit.name);
|
|
</script>
|
|
</div> |