mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-13 07:11:14 +01:00
26 lines
No EOL
897 B
HTML
Executable file
26 lines
No EOL
897 B
HTML
Executable file
<div class="git_clone_area">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td>
|
|
<label>Git Repository</label>
|
|
<input id="git_clone_repo">
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
Initialize submodules
|
|
<select id="git_init_submodules">
|
|
<option value="true" selected>Yes</option>
|
|
<option value="false">No</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<button onclick="codiad.CodeGit.clone(codiad.CodeGit.location, $('#git_clone_repo').val(), $('#git_init_submodules').val()); return false;">Clone</button>
|
|
<button onclick="codiad.modal.unload(); return false;">Cancel</button>
|
|
<script>
|
|
$('#git_clone_repo').focus();
|
|
</script>
|
|
</div> |