2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-05 16:42:29 +03:00

docs snippets: a few more minor tweaks (#28225)

* Remove extra comma.

* Use curly braces in snippet.
This commit is contained in:
XhmikosR
2019-02-11 11:34:02 +02:00
committed by GitHub
parent adf16da25e
commit 3aa0770b71
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -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 %}