mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
docs snippets: a few more minor tweaks (#28225)
* Remove extra comma. * Use curly braces in snippet.
This commit is contained in:
parent
adf16da25e
commit
3aa0770b71
2 changed files with 4 additions and 2 deletions
|
@ -1125,7 +1125,7 @@ $form-validation-states: map-merge(
|
|||
"invalid": (
|
||||
"color": $form-feedback-invalid-color,
|
||||
"icon": $form-feedback-icon-invalid
|
||||
),
|
||||
)
|
||||
),
|
||||
$form-validation-states
|
||||
);
|
||||
|
|
|
@ -50,7 +50,9 @@ All infinitive events provide [`preventDefault()`](https://developer.mozilla.org
|
|||
|
||||
{% highlight js %}
|
||||
$('#myModal').on('show.bs.modal', function (e) {
|
||||
if (!data) return e.preventDefault() // stops modal from being shown
|
||||
if (!data) {
|
||||
return e.preventDefault() // stops modal from being shown
|
||||
}
|
||||
})
|
||||
{% endhighlight %}
|
||||
|
||||
|
|
Loading…
Reference in a new issue