Skip to content

Commit 6fb72fd

Browse files
committed
Slider demo: Make read only inputs readonly
1 parent b6da520 commit 6fb72fd

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

demos/slider/range-vertical.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<p>
3131
<label for="amount">Target sales goal (Millions):</label>
32-
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
32+
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
3333
</p>
3434

3535
<div id="slider-range" style="height:250px;"></div>

demos/slider/range.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
<p>
3232
<label for="amount">Price range:</label>
33-
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
33+
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
3434
</p>
3535

3636
<div id="slider-range"></div>

demos/slider/rangemax.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<p>
3131
<label for="amount">Minimum number of bedrooms:</label>
32-
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
32+
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
3333
</p>
3434
<div id="slider-range-max"></div>
3535

demos/slider/rangemin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<p>
3131
<label for="amount">Maximum price:</label>
32-
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
32+
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
3333
</p>
3434

3535
<div id="slider-range-min"></div>

demos/slider/slider-vertical.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
<p>
3232
<label for="amount">Volume:</label>
33-
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
33+
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
3434
</p>
3535

3636
<div id="slider-vertical" style="height:200px;"></div>

demos/slider/steps.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<p>
3131
<label for="amount">Donation amount ($50 increments):</label>
32-
<input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
32+
<input type="text" id="amount" readonly style="border:0; color:#f6931f; font-weight:bold;" />
3333
</p>
3434

3535
<div id="slider"></div>

0 commit comments

Comments
 (0)