aboutsummaryrefslogtreecommitdiff
path: root/site/docs/4.2/components
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-02-10 22:25:51 +0200
committerXhmikosR <[email protected]>2019-02-11 08:54:17 +0200
commitbbf8b768ef97127b66165ed24496ae6429189a72 (patch)
treed8a55e7afecfbc950e28736f7775bf0247d929c1 /site/docs/4.2/components
parent7a9a8db7b1772fab450ce1cb45b1b31bc3147f82 (diff)
downloadbootstrap-bbf8b768ef97127b66165ed24496ae6429189a72.tar.xz
bootstrap-bbf8b768ef97127b66165ed24496ae6429189a72.zip
Cosmetic changes in snippets.
Diffstat (limited to 'site/docs/4.2/components')
-rw-r--r--site/docs/4.2/components/alerts.md4
-rw-r--r--site/docs/4.2/components/carousel.md2
-rw-r--r--site/docs/4.2/components/collapse.md2
-rw-r--r--site/docs/4.2/components/dropdowns.md2
-rw-r--r--site/docs/4.2/components/forms.md2
-rw-r--r--site/docs/4.2/components/popovers.md2
-rw-r--r--site/docs/4.2/components/scrollspy.md2
-rw-r--r--site/docs/4.2/components/toasts.md2
-rw-r--r--site/docs/4.2/components/tooltips.md2
9 files changed, 10 insertions, 10 deletions
diff --git a/site/docs/4.2/components/alerts.md b/site/docs/4.2/components/alerts.md
index 51ab003f3..ec9ac401e 100644
--- a/site/docs/4.2/components/alerts.md
+++ b/site/docs/4.2/components/alerts.md
@@ -100,7 +100,7 @@ Note that closing an alert will remove it from the DOM.
| `$().alert('close')` | Closes an alert by removing it from the DOM. If the `.fade` and `.show` classes are present on the element, the alert will fade out before it is removed. |
| `$().alert('dispose')` | Destroys an element's alert. |
-{% highlight js %}$(".alert").alert('close'){% endhighlight %}
+{% highlight js %}$('.alert').alert('close'){% endhighlight %}
### Events
@@ -113,6 +113,6 @@ Bootstrap's alert plugin exposes a few events for hooking into alert functionali
{% highlight js %}
$('#myAlert').on('closed.bs.alert', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/carousel.md b/site/docs/4.2/components/carousel.md
index dbe321cd9..455e2d9e5 100644
--- a/site/docs/4.2/components/carousel.md
+++ b/site/docs/4.2/components/carousel.md
@@ -355,7 +355,7 @@ All carousel events are fired at the carousel itself (i.e. at the `<div class="c
{% highlight js %}
$('#myCarousel').on('slide.bs.carousel', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/collapse.md b/site/docs/4.2/components/collapse.md
index 6ca6f43de..893b8b664 100644
--- a/site/docs/4.2/components/collapse.md
+++ b/site/docs/4.2/components/collapse.md
@@ -246,6 +246,6 @@ Bootstrap's collapse class exposes a few events for hooking into collapse functi
{% highlight js %}
$('#myCollapsible').on('hidden.bs.collapse', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/dropdowns.md b/site/docs/4.2/components/dropdowns.md
index 2b5ee2014..417d9f5ea 100644
--- a/site/docs/4.2/components/dropdowns.md
+++ b/site/docs/4.2/components/dropdowns.md
@@ -904,6 +904,6 @@ All dropdown events are fired at the `.dropdown-menu`'s parent element and have
{% highlight js %}
$('#myDropdown').on('show.bs.dropdown', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/forms.md b/site/docs/4.2/components/forms.md
index ffe1b107f..94a868fad 100644
--- a/site/docs/4.2/components/forms.md
+++ b/site/docs/4.2/components/forms.md
@@ -115,7 +115,7 @@ Set heights using classes like `.form-control-lg` and `.form-control-sm`.
Add the `readonly` boolean attribute on an input to prevent modification of the input's value. Read-only inputs appear lighter (just like disabled inputs), but retain the standard cursor.
{% capture example %}
-<input class="form-control" type="text" placeholder="Readonly input here…" readonly>
+<input class="form-control" type="text" placeholder="Readonly input here..." readonly>
{% endcapture %}
{% include example.html content=example %}
diff --git a/site/docs/4.2/components/popovers.md b/site/docs/4.2/components/popovers.md
index 06335fe3e..3e506aa29 100644
--- a/site/docs/4.2/components/popovers.md
+++ b/site/docs/4.2/components/popovers.md
@@ -351,6 +351,6 @@ Updates the position of an element's popover.
{% highlight js %}
$('#myPopover').on('hidden.bs.popover', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/scrollspy.md b/site/docs/4.2/components/scrollspy.md
index b8d911949..a4b0980dc 100644
--- a/site/docs/4.2/components/scrollspy.md
+++ b/site/docs/4.2/components/scrollspy.md
@@ -340,6 +340,6 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
{% highlight js %}
$('[data-spy="scroll"]').on('activate.bs.scrollspy', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/toasts.md b/site/docs/4.2/components/toasts.md
index 461171479..fe62533fe 100644
--- a/site/docs/4.2/components/toasts.md
+++ b/site/docs/4.2/components/toasts.md
@@ -339,6 +339,6 @@ Hides an element's toast. Your toast will remain on the DOM but won't show anymo
{% highlight js %}
$('#myToast').on('hidden.bs.toast', function () {
- // do something…
+ // do something...
})
{% endhighlight %}
diff --git a/site/docs/4.2/components/tooltips.md b/site/docs/4.2/components/tooltips.md
index 9248447ba..41d070b1f 100644
--- a/site/docs/4.2/components/tooltips.md
+++ b/site/docs/4.2/components/tooltips.md
@@ -356,6 +356,6 @@ Updates the position of an element's tooltip.
{% highlight js %}
$('#myTooltip').on('hidden.bs.tooltip', function () {
- // do something…
+ // do something...
})
{% endhighlight %}