Lines Matching refs:self

1097     var self = obj instanceof this.constructor ?
1100 if (!self) {
1101 self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1102 $(obj.currentTarget).data('bs.' + this.type, self)
1106 self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
1109 if (self.tip().hasClass('in') || self.hoverState == 'in') {
1110 self.hoverState = 'in'
1114 clearTimeout(self.timeout)
1116 self.hoverState = 'in'
1118 if (!self.options.delay || !self.options.delay.show) return self.show()
1120 self.timeout = setTimeout(function () {
1121 if (self.hoverState == 'in') self.show()
1122 }, self.options.delay.show)
1134 var self = obj instanceof this.constructor ?
1137 if (!self) {
1138 self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1139 $(obj.currentTarget).data('bs.' + this.type, self)
1143 self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false
1146 if (self.isInStateTrue()) return
1148 clearTimeout(self.timeout)
1150 self.hoverState = 'out'
1152 if (!self.options.delay || !self.options.delay.hide) return self.hide()
1154 self.timeout = setTimeout(function () {
1155 if (self.hoverState == 'out') self.hide()
1156 }, self.options.delay.hide)
1443 var self = this
1445 self = $(e.currentTarget).data('bs.' + this.type)
1446 if (!self) {
1447 self = new this.constructor(e.currentTarget, this.getDelegateOptions())
1448 $(e.currentTarget).data('bs.' + this.type, self)
1453 self.inState.click = !self.inState.click
1454 if (self.isInStateTrue()) self.enter(self)
1455 else self.leave(self)
1457 self.tip().hasClass('in') ? self.leave(self) : self.enter(self)