Lines Matching refs:_bind
1314 PROTOTYPE._bind = function(targets, events, method, suffix, context) { function in PROTOTYPE
1402 this._bind(documentTarget, ['mouseout', 'blur'], function(event) {
1419 this._bind(hideTarget, 'mouseleave', function() {
1426 this._bind(containerTarget.closest('html'), ['mousedown', 'touchstart'], function(event) {
1442 this._bind(showTarget, 'qtip-'+this.id+'-inactive', inactiveMethod);
1445 this._bind(hideTarget.add(tooltip), QTIP.inactiveEvents, inactiveMethod, '-inactive');
1461 this._bind(showTarget, showEvents, showMethod);
1462 this._bind(hideTarget, hideEvents, hideMethod);
1463 this._bind(showTarget, toggleEvents, function(event) {
1469 this._bind(showTarget.add(tooltip), 'mousemove', function(event) {
1493 this._bind(showTarget, ['mouseenter', 'mouseleave'], function(event) {
1499 this._bind(documentTarget, 'mousemove', function(event) {
1510 this._bind( $.event.special.resize ? viewportTarget : windowTarget, 'resize', repositionMethod );
1515 this._bind( windowTarget.add(posOptions.container), 'scroll', repositionMethod );
2018 …qtip._bind( $('*', tip).add(tip), ['click', 'mousedown'], function(event) { event.stopPropagation(…
2022 qtip._bind(qtip.tooltip, 'tooltipmove', this.reposition, this._ns, this);