mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-10 21:26:35 +01:00
20 lines
679 B
PHP
Executable File
20 lines
679 B
PHP
Executable File
<?php
|
|
require_once('../../common.php');
|
|
?>
|
|
<div class="dragdrop_settings">
|
|
<label><span class="icon-magnet big-icon"></span>Drag'n'Drop Settings</label>
|
|
<hr>
|
|
<table class="settings">
|
|
<tr>
|
|
<td style="width: 80%;">
|
|
Enable drag'n'drop to insert or append file content in active file
|
|
</td>
|
|
<td>
|
|
<select class="setting" data-setting="codiad.plugin.drag.insert">
|
|
<option value="true"><?php i18n("Yes"); ?></option>
|
|
<option value="false" selected><?php i18n("No"); ?></option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|