mirror of
https://github.com/xevidos/codiad.git
synced 2025-01-13 08:21:56 +01:00
24 lines
855 B
HTML
24 lines
855 B
HTML
|
<div class="git_submodule_area">
|
||
|
<label>Git Submodule</label>
|
||
|
<table>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span>Repository</span>
|
||
|
<input id="git_submodule_repo" placeholder="Submodule url">
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<span>Directory name</span>
|
||
|
<input id="git_submodule_dir" placeholder="Directory name">
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<button onclick="codiad.CodeGit.submodule(codiad.CodeGit.location, $('#git_submodule_dir').val(), $('#git_submodule_repo').val()); return false;">Add submodule</button>
|
||
|
<button onclick="codiad.modal.unload(); return false;">Cancel</button>
|
||
|
<script>
|
||
|
$('#git_submodule_repo').focus();
|
||
|
</script>
|
||
|
</div>
|