diff options
| author | Michael J. Ryan <[email protected]> | 2016-03-14 13:29:03 -0700 |
|---|---|---|
| committer | Michael J. Ryan <[email protected]> | 2016-03-14 13:29:03 -0700 |
| commit | 681d390a0504c7a1c855a6eb052ea70409e41cde (patch) | |
| tree | c3098a78d2b68ed81865ca4162cb746b277d875a /js/src/tooltip.js | |
| parent | 1a23279237b5360dab15d91aac85cbf8306e560a (diff) | |
| download | bootstrap-681d390a0504c7a1c855a6eb052ea70409e41cde.tar.xz bootstrap-681d390a0504c7a1c855a6eb052ea70409e41cde.zip | |
Update tooltip.js
match project's style check
Diffstat (limited to 'js/src/tooltip.js')
| -rw-r--r-- | js/src/tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/tooltip.js b/js/src/tooltip.js index 03d9e4cc8..b98a56134 100644 --- a/js/src/tooltip.js +++ b/js/src/tooltip.js @@ -16,7 +16,7 @@ const Tooltip = (($) => { * Check for Tether dependency * Tether - http://github.hubspot.com/tether/ */ - if ('undefined' === typeof Tether) { + if (typeof Tether === 'undefined') { throw new Error('Bootstrap tooltips require Tether (http://github.hubspot.com/tether/)') } |
