Skip to content

Commit

Permalink
fix reverse turn direction labeling, #322
Browse files Browse the repository at this point in the history
fix some typos in hover text for revers turn direction
  • Loading branch information
jneilliii committed Nov 20, 2020
1 parent 0e04928 commit d81521b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
</div>
<div style="padding-top: 5px;" class="row-fluid">
<div class="control-group span4">
<i class="icon icon-info-sign" title="Revers the adjustment scres turning direction logig" data-toggle="tooltip"></i> Reverse turn direction <input class="input-checkbox" type="checkbox" data-bind="checked: $root.reverse" style="display: inline-block;margin-bottom: 5px;"></input>
<i class="icon icon-info-sign" title="Reverse the adjustment screws turning direction logic" data-toggle="tooltip"></i> Reverse turn direction <input class="input-checkbox" type="checkbox" data-bind="checked: $root.reverse" style="display: inline-block;margin-bottom: 5px;"></input>
</div>
<div class="control-group span3" title="Adjustment screw details." data-toggle="tooltip">
<div class="input-append">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@
<!-- /ko -->
<!-- ko ifnot: $data.len -->
<span>Turn direction - </span>
<span data-bind="css: {'raise': !$root.reverse(), 'lower': $root.reverse()}, text: $root.reverse()?'anticlockwise (left)':'clockwise (right)'"></span>
<span data-bind="css: {'raise': !$root.reverse(), 'lower': $root.reverse()}">clockwise (right)</span>
<span> / </span>
<span data-bind="css: {'raise': $root.reverse(), 'lower': !$root.reverse()}, text: !$root.reverse()?'anticlockwise (left)':'clockwise (right)'"></span>
<span data-bind="css: {'raise': $root.reverse(), 'lower': !$root.reverse()}">anticlockwise (left)</span>
<!-- /ko -->
</div>
</td>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "Bed Visualizer"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "1.0.0rc4"
plugin_version = "1.0.0rc5"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit d81521b

Please sign in to comment.