1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-09 07:06:36 +02:00

Update tooltip.js

match project's style check
This commit is contained in:
Michael J. Ryan
2016-03-14 13:29:03 -07:00
parent 1a23279237
commit 681d390a05

View File

@@ -16,7 +16,7 @@ const Tooltip = (($) => {
* Check for Tether dependency * Check for Tether dependency
* Tether - http://github.hubspot.com/tether/ * 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/)') throw new Error('Bootstrap tooltips require Tether (http://github.hubspot.com/tether/)')
} }