Skip to content

Commit

Permalink
Fix typo in the Popper.js checks. (#27488)
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR authored Oct 21, 2018
1 parent d13ae1f commit 0a3755b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/src/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class Dropdown {
* Popper - https://popper.js.org
*/
if (typeof Popper === 'undefined') {
throw new TypeError('Bootstrap dropdown require Popper.js (https://popper.js.org)')
throw new TypeError('Bootstrap\'s dropdowns require Popper.js (https://popper.js.org/)')
}

let referenceElement = this._element
Expand Down
2 changes: 1 addition & 1 deletion js/src/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class Tooltip {
* Popper - https://popper.js.org
*/
if (typeof Popper === 'undefined') {
throw new TypeError('Bootstrap tooltips require Popper.js (https://popper.js.org)')
throw new TypeError('Bootstrap\'s tooltips require Popper.js (https://popper.js.org/)')
}

// private
Expand Down

0 comments on commit 0a3755b

Please sign in to comment.