Skip to content

Commit

Permalink
these attributes were incorrectly even also set on those tags.
Browse files Browse the repository at this point in the history
So I've corrected this. Period.
  • Loading branch information
Maximilian committed Jan 26, 2019
1 parent 8a3e218 commit 93a646a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions demos/ie9/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ <h3>Input type number (with a bigger amount of options)</h3>
<legend>Choose a number wisely</legend>

<label for="number">Number:</label>
<input type="number" name="number" id="number" value="" list="numberlist" multiple>
<input type="number" name="number" id="number" value="" list="numberlist">
<datalist id="numberlist" title="Number suggestions:">
<!--[if IE 9]><select disabled style="display:none" class="ie9_fix"><![endif]-->
<option value="-1">
Expand Down Expand Up @@ -193,7 +193,7 @@ <h3>Input type search</h3>
<legend>Please provide a search term</legend>

<label for="search">Search:</label>
<input type="search" name="search" id="search" value="" list="searchlist" multiple>
<input type="search" name="search" id="search" value="" list="searchlist">
<datalist id="searchlist" title="Search suggestions:">
<!--[if IE 9]><select disabled style="display:none" class="ie9_fix"><![endif]-->
<option value="weather">
Expand All @@ -216,7 +216,7 @@ <h3>Input type tel</h3>
<legend>Who you gonna call?</legend>

<label for="tel">Telephone no.:</label>
<input type="tel" name="tel" id="tel" value="" list="tellist" multiple>
<input type="tel" name="tel" id="tel" value="" list="tellist">
<datalist id="tellist" title="Telephone no. suggestions:">
<!--[if IE 9]><select disabled style="display:none" class="ie9_fix"><![endif]-->
<option value="555-2323">
Expand All @@ -235,7 +235,7 @@ <h3>Input type url</h3>
<legend>What's your favorite website</legend>

<label for="url">URLs:</label>
<input type="url" name="url" id="url" value="" list="urllist" multiple>
<input type="url" name="url" id="url" value="" list="urllist">
<datalist id="urllist" title="URL suggestions:">
<!--[if IE 9]><select disabled style="display:none" class="ie9_fix"><![endif]-->
<option value="https://davidhasselhoffonline.com">
Expand Down
8 changes: 4 additions & 4 deletions demos/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ <h3>Input type number (with a bigger amount of options)</h3>
<legend>Choose a number wisely</legend>

<label for="number">Number:</label>
<input type="number" name="number" id="number" value="" list="numberlist" multiple>
<input type="number" name="number" id="number" value="" list="numberlist">
<datalist id="numberlist" title="Number suggestions:">
<option value="-1">
<option value="1">
Expand Down Expand Up @@ -156,7 +156,7 @@ <h3>Input type search</h3>
<legend>Please provide a search term</legend>

<label for="search">Search:</label>
<input type="search" name="search" id="search" value="" list="searchlist" multiple>
<input type="search" name="search" id="search" value="" list="searchlist">
<datalist id="searchlist" title="Search suggestions:">
<option value="weather">
<option value="translate">
Expand All @@ -177,7 +177,7 @@ <h3>Input type tel</h3>
<legend>Who you gonna call?</legend>

<label for="tel">Telephone no.:</label>
<input type="tel" name="tel" id="tel" value="" list="tellist" multiple>
<input type="tel" name="tel" id="tel" value="" list="tellist">
<datalist id="tellist" title="Telephone no. suggestions:">
<option value="555-2323">
<option value="91-1892-221343">
Expand All @@ -194,7 +194,7 @@ <h3>Input type url</h3>
<legend>What's your favorite website</legend>

<label for="url">URLs:</label>
<input type="url" name="url" id="url" value="" list="urllist" multiple>
<input type="url" name="url" id="url" value="" list="urllist">
<datalist id="urllist" title="URL suggestions:">
<option value="https://davidhasselhoffonline.com">
<option value="https://southpark.cc.com">
Expand Down

0 comments on commit 93a646a

Please sign in to comment.