diff options
| author | Kevin Kirsche <[email protected]> | 2015-02-25 12:19:11 -0500 |
|---|---|---|
| committer | Kevin Kirsche <[email protected]> | 2015-02-25 12:19:11 -0500 |
| commit | 238be65786ab78274dcc59c9de9fab27eec48304 (patch) | |
| tree | 915b66a324d0fbe7c8dba2168286affa9bdd920a /js/tooltip.js | |
| parent | 804457c474c686d4b5f45545da0dbad5ed56e387 (diff) | |
| download | bootstrap-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.js | 10 |
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) |
