Skip to content

Commit

Permalink
Fix incorrect <input> type for Date Picker example
Browse files Browse the repository at this point in the history
Date Picker requires `type="text"`, but it was set to `type="date"` in the example (the actual component had the correct type).
  • Loading branch information
solkaz authored Jul 20, 2017
1 parent fea1d65 commit 7548ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jade/page-contents/forms_content.html
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ <h2 class="header">Date Picker</h2>
<label for="birthdate">Birthdate</label>
<input id="birthdate" type="text" class="datepicker">
<pre><code class="language-markup">
&lt;input type="date" class="datepicker">
&lt;input type="text" class="datepicker">
</code></pre>

<h4>Initialization</h4>
Expand Down

0 comments on commit 7548ae1

Please sign in to comment.