-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Change required description on Safari #512
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo :P
@@ -1337,7 +1337,7 @@ | |||
"例如,如果你想把一个文本输入字段设置为必填项,在你的<code>input</code>元素中加上<code>required</code>属性就可以了,你可以使用:<br><code><input type=\"text\" required></code>", | |||
"任务:给你的输入框添加<code>required</code>属性,这样用户不填写输入框就无法提交表单。", | |||
"试试输入框不填写任何文本,然后点击Submit提交表单,看看浏览器如何提示你该字段为必填项。", | |||
"注意:<code>required</code>属性在Safari浏览器中不起作用,请用其他浏览器来学习,推荐使用Chrome。" | |||
"注意:<code>required</code>属性在Safari浏览器10.1以下不起作用(2017年3月27以前),请更更新Safari或者使用其他浏览器来学习,推荐使用Chrome。" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"请更更新" => "请更新"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, please unify the symbols (parenthesis here) to EITHER full-width OR half-width. Mix & match won't be a good idea 😂
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
哈哈好尴尬呀居然打错了字,那我括号也改一改好了
b91d045
to
d14c6be
Compare
Updated now |
In this PR:
Fixes #447