• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/libxo/xohtml/external/

Lines Matching refs:show

128 PROTOTYPE.render = function(show) {

227 if(!self.hiddenDuringWait && (options.show.ready || show)) {
262 clearTimeout(this.timers.show);
370 if('show' in opts && invalidOpt(opts.show)) {
371 opts.show = opts.show.jquery ? { target: opts.show } :
372 opts.show === TRUE ? { ready: TRUE } : { event: opts.show };
411 v && !this.rendered && this.render(this.options.show.ready);
447 '^show.ready$': function(obj, o, v) {
466 '^events.(render|show|move|hide|focus|blur)$': function(obj, o, v) {
471 '^(show|hide|position).(event|target|fixed|inactive|leave|distance|viewport|adjust)': function() {
526 var rmove = /^position\.(my|at|adjust|target|container|viewport)|style|content|show\.ready/i,
527 rrender = /^prerender|show\.ready/i;
607 // Append new content if its a DOM array and show it if hidden
731 (!adjust.mouse || this.options.show.distance) && cache.origin && cache.origin.pageX ? cache.origin :
945 // Try to prevent flickering when tooltip overlaps show element
948 options.show.target.add(event.target).length === options.show.target.length &&
964 var type = state ? 'show' : 'hide',
966 otherOpts = this.options[ !state ? 'show' : 'hide' ],
981 // Fire tooltip(show/hide) event and check if destroyed
995 // Store show origin coordinates
1020 // Clear show timer if we're hiding
1021 clearTimeout(this.timers.show);
1047 $(this.options.show.autofocus, tooltip).focus();
1051 this.options.show.target.trigger('qtip-'+this.id+'-inactive');
1092 PROTOTYPE.show = function(event) { return this.toggle(TRUE, event); };
1241 clearTimeout(this.timers.show);
1244 // Start show timer
1246 if(this.options.show.delay > 0) {
1247 this.timers.show = setTimeout(callback, this.options.show.delay);
1258 ontoTarget = relatedTarget[0] === this.options.show.target[0];
1261 clearTimeout(this.timers.show);
1355 // Hide when we leave the tooltip and not onto the show target (if a hide event is set)
1357 options.show.target && !target.closest(options.show.target[0]).length) {
1388 showTarget = options.show.target,
1396 showEvents = options.show.event ? $.trim('' + options.show.event).split(' ') : [],
1415 * Make sure hoverIntent functions properly by using mouseleave to clear show timer if
1416 * mouseenter/mouseout is used for show.event, even if it isn't in the users options.
1418 else if(/mouse(over|enter)/i.test(options.show.event)) {
1420 clearTimeout(this.timers.show);
1441 // Bind inactive method to show target(s) as a custom event
1448 // Apply hide events (and filter identical show events)
1460 // Apply show/hide/toggle events
1482 // Cache mousemove coords on show targets
1522 this.options.show.target[0],
1589 if(config.show.target === FALSE) { config.show.target = newTarget; }
1590 if(config.show.solo === TRUE) { config.show.solo = posOptions.container.closest('body'); }
1711 // Determine hide and show targets
1712 targets = { show: options.show.target, hide: options.hide.target };
1714 show: $.trim('' + options.show.event).replace(/ /g, namespace+' ') + namespace,
1720 * mouseenter/mouseout is used for show.event, even if it isn't in the users options.
1722 if(/mouse(over|enter)/i.test(events.show) && !/mouse(out|leave)/i.test(events.hide)) {
1728 * on show targets before the tooltip has rendered.
1732 targets.show.bind('mousemove'+namespace, function(event) {
1741 api.render(typeof event === 'object' || options.show.ready);
1743 // Unbind show and hide events
1744 targets.show.add(targets.hide).unbind(namespace);
1755 if(options.show.delay > 0) {
1756 clearTimeout(api.timers.show);
1757 api.timers.show = setTimeout(render, options.show.delay);
1758 if(events.show !== events.hide) {
1759 targets.hide.bind(events.hide, function() { clearTimeout(api.timers.show); });
1765 // Bind show events to target
1766 targets.show.bind(events.show, hoverIntent);
1769 if(options.show.ready || options.prerender) { hoverIntent(event); }
1888 show: {
1917 show: NULL,