-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from Autodrop3d/feature/gcode_at_commands
add missing modal
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<div id="autodrop3d_command_editor" data-bind="with: selected_command" class="modal hide"> | ||
<div class="modal-header"> | ||
<a href="#" class="close" data-dismiss="modal" aria-hidden="true">×</a> | ||
</div> | ||
<div class="modal-body"> | ||
<div class="control-group"> | ||
<label class="control-label">{{ _('Command') }}</label> | ||
<div class="controls"> | ||
<div class="input-prepend"><span class="add-on">@</span><input type="text" class="input-block" data-bind="value: command"/></div> | ||
</div> | ||
</div> | ||
<div class="control-group"> | ||
<label class="control-label">{{ _('Python Script') }}</label> | ||
<div class="controls"> | ||
<textarea rows="10" class="input-block-level" data-bind="value: python"></textarea> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="modal-footer"> | ||
<small>Make sure to click save in the main settings after making changes here.</small> <a href="#" class="btn" data-dismiss="modal" aria-hidden="true">{{ _('Close') }}</a> | ||
</div> | ||
</div> |