1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

add undefined for now

This commit is contained in:
Jacob Thornton 2015-11-14 20:43:45 -08:00
parent d600831a15
commit ece98f980c

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 (!window.Tether) { if (window.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/)')
} }