From 238be65786ab78274dcc59c9de9fab27eec48304 Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Wed, 25 Feb 2015 12:19:11 -0500 Subject: [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 --- js/tooltip.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'js/tooltip.js') 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) -- cgit v1.2.3