aboutsummaryrefslogtreecommitdiff
path: root/js/tooltip.js
diff options
context:
space:
mode:
authorKevin Kirsche <[email protected]>2015-02-25 12:19:11 -0500
committerKevin Kirsche <[email protected]>2015-02-25 12:19:11 -0500
commit238be65786ab78274dcc59c9de9fab27eec48304 (patch)
tree915b66a324d0fbe7c8dba2168286affa9bdd920a /js/tooltip.js
parent804457c474c686d4b5f45545da0dbad5ed56e387 (diff)
downloadbootstrap-238be65786ab78274dcc59c9de9fab27eec48304.tar.xz
bootstrap-238be65786ab78274dcc59c9de9fab27eec48304.zip
[Ref #15881] Use Explicit Values rather than Chain
[Ref #15881] Use Explicit Values for javascript variables rather than chained ones. From https://github.com/twbs/bootstrap/pull/15881#discussion_r25330647
Diffstat (limited to 'js/tooltip.js')
-rw-r--r--js/tooltip.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tooltip.js b/js/tooltip.js
index fb2ff7b9a..0467c71d1 100644
--- a/js/tooltip.js
+++ b/js/tooltip.js
@@ -15,11 +15,11 @@
// ===============================
var Tooltip = function (element, options) {
- this.type =
- this.options =
- this.enabled =
- this.timeout =
- this.hoverState =
+ this.type = null
+ this.options = null
+ this.enabled = null
+ this.timeout = null
+ this.hoverState = null
this.$element = null
this.init('tooltip', element, options)