Skip to content

Commit

Permalink
add small fix for tooltip consistency + fix customizer syntax issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Aug 18, 2013
1 parent 06c3d87 commit 734b6ac
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 18 deletions.
2 changes: 0 additions & 2 deletions assets/js/customizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,7 @@ window.onload = function () { // wait for load in a dumb way because B-0
}

var content = zip.generate()

location.href = 'data:application/zip;base64,' + content

complete()
}

Expand Down
6 changes: 3 additions & 3 deletions customize.html

Large diffs are not rendered by default.

16 changes: 10 additions & 6 deletions dist/js/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }

// http://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
var called = false, $el = this
var called = false, $el = this
$(this).one($.support.transition.end, function () { called = true })
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
setTimeout(callback, duration)
Expand Down Expand Up @@ -1181,10 +1181,11 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }

clearTimeout(self.timeout)

self.hoverState = 'in'

if (!self.options.delay || !self.options.delay.show) return self.show()

self.hoverState = 'in'
self.timeout = setTimeout(function () {
self.timeout = setTimeout(function () {
if (self.hoverState == 'in') self.show()
}, self.options.delay.show)
}
Expand All @@ -1195,10 +1196,11 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }

clearTimeout(self.timeout)

self.hoverState = 'out'

if (!self.options.delay || !self.options.delay.hide) return self.hide()

self.hoverState = 'out'
self.timeout = setTimeout(function () {
self.timeout = setTimeout(function () {
if (self.hoverState == 'out') self.hide()
}, self.options.delay.hide)
}
Expand Down Expand Up @@ -1331,7 +1333,9 @@ if (!jQuery) { throw new Error("Bootstrap requires jQuery") }
var $tip = this.tip()
var e = $.Event('hide.bs.' + this.type)

function complete() { $tip.detach() }
function complete() {
if (that.hoverState != 'in') $tip.detach()
}

this.$element.trigger(e)

Expand Down
2 changes: 1 addition & 1 deletion dist/js/bootstrap.min.js

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions js/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,11 @@

clearTimeout(self.timeout)

self.hoverState = 'in'

if (!self.options.delay || !self.options.delay.show) return self.show()

self.hoverState = 'in'
self.timeout = setTimeout(function () {
self.timeout = setTimeout(function () {
if (self.hoverState == 'in') self.show()
}, self.options.delay.show)
}
Expand All @@ -122,10 +123,11 @@

clearTimeout(self.timeout)

self.hoverState = 'out'

if (!self.options.delay || !self.options.delay.hide) return self.hide()

self.hoverState = 'out'
self.timeout = setTimeout(function () {
self.timeout = setTimeout(function () {
if (self.hoverState == 'out') self.hide()
}, self.options.delay.hide)
}
Expand Down Expand Up @@ -258,7 +260,9 @@
var $tip = this.tip()
var e = $.Event('hide.bs.' + this.type)

function complete() { $tip.detach() }
function complete() {
if (that.hoverState != 'in') $tip.detach()
}

this.$element.trigger(e)

Expand Down
2 changes: 1 addition & 1 deletion js/transition.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

// http://blog.alexmaccaw.com/css-transitions
$.fn.emulateTransitionEnd = function (duration) {
var called = false, $el = this
var called = false, $el = this
$(this).one($.support.transition.end, function () { called = true })
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
setTimeout(callback, duration)
Expand Down

0 comments on commit 734b6ac

Please sign in to comment.