We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bad716 commit 4816b32Copy full SHA for 4816b32
css/ui.css
@@ -74,6 +74,7 @@ body {
74
border-style: solid;
75
border-width: 1px;
76
overflow: hidden;
77
+ user-select:text;
78
}
79
80
.tcv_cad_info_wrapper {
src/slider.js
@@ -53,14 +53,6 @@ class Slider {
53
54
55
sliderChange = (e) => {
56
-
57
- // // Another option
58
- // if (window.getSelection) {
59
- // window.getSelection().removeAllRanges();
60
- // } else if (document.selection) {
61
- // document.selection.empty();
62
- // }
63
64
const value = e.target.value;
65
this.input.value = Math.round(1000 * value) / 1000;
66
this._handle(this.type, this.index, this.input.value);
0 commit comments