Lines Matching refs:obj
1096 Tooltip.prototype.enter = function (obj) { argument
1097 var self = obj instanceof this.constructor ?
1098 obj : $(obj.currentTarget).data('bs.' + this.type)
1101 self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1102 $(obj.currentTarget).data('bs.' + this.type, self)
1105 if (obj instanceof $.Event) {
1106 self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true
1133 Tooltip.prototype.leave = function (obj) { argument
1134 var self = obj instanceof this.constructor ?
1135 obj : $(obj.currentTarget).data('bs.' + this.type)
1138 self = new this.constructor(obj.currentTarget, this.getDelegateOptions())
1139 $(obj.currentTarget).data('bs.' + this.type, self)
1142 if (obj instanceof $.Event) {
1143 self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false