Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect <input> type for Date Picker example #4992

Merged
merged 1 commit into from
Jul 20, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix incorrect <input> type for Date Picker example
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
commit 7548ae1c27c62d0d93fcd3d9b71f330f32fca809
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