Lines Matching refs:options

98 ;function QTip(target, options, id, attr) {  argument
108 this.options = options;
135 options = this.options,
138 text = options.content.text,
139 title = options.content.title,
140 button = options.content.button,
141 posOptions = options.position,
152 …'class': [ NAMESPACE, CLASS_DEFAULT, options.style.classes, NAMESPACE + '-pos-' + options.position…
153 'width': options.style.width || '',
154 'height': options.style.height || '',
224 if(!self.hiddenDuringWait && (options.show.ready || show)) {
270 if(this.options.suppress && title) {
279 this.options = this.elements = this.cache = this.timers =
334 var loading = text || $(this).attr(api.options.content.attr) || 'Loading...',
410 v && !this.rendered && this.render(this.options.show.ready);
418 if(this.options.content.text === this.target.attr(prev)) {
474 var posOptions = this.options.position;
485 function convertNotation(options, notation) { argument
486 var i = 0, obj, option = options,
496 return [obj || options, levels.pop()];
502 var o = convertNotation(this.options, notation.toLowerCase()),
534 options = this.options,
551 var obj = convertNotation(options, notation.toLowerCase()), previous;
563 sanitizeOptions(options);
575 this.reposition( options.position.target === 'mouse' ? NULL : this.cache.event );
657 'class': NAMESPACE + '-titlebar ' + (this.options.style.widget ? createWidgetClass('header') : '')
677 if(this.options.content.button) { this._createButton(); }
701 posOptions = this.options.position,
742 if((!adjust.mouse || this.options.show.distance) && cache.origin && cache.origin.pageX) {
967 options = this.options,
973 options.show.target.add(event.target).length === options.show.target.length &&
990 opts = this.options[type],
991 otherOpts = this.options[ !state ? 'show' : 'hide' ],
992 posOptions = this.options.position,
993 contentOptions = this.options.content,
1075 $(this.options.show.autofocus, tooltip).focus();
1079 this.options.show.target.trigger('qtip-'+this.id+'-inactive');
1200 button = this.options.content.button,
1212 'class': 'qtip-close ' + (this.options.style.widget ? '' : NAMESPACE+'-icon'),
1251 var on = this.options.style.widget,
1260 …-helper-reset '+createWidgetClass(), on).toggleClass(CLASS_DEFAULT, this.options.style.def && !on);
1303 this.options.show.delay
1313 ontoTarget = relatedTarget[0] === this.options.show.target[0];
1322 (this.options.position.target === 'mouse' && ontoTooltip) ||
1323 (this.options.hide.fixed && (
1338 this.options.hide.delay,
1344 if(this.tooltip.hasClass(CLASS_DISABLED) || !this.options.hide.inactive) { return FALSE; }
1351 this.options.hide.inactive
1393 options = this.options;
1407 if(options.position.target === 'mouse' && options.hide.event &&
1408 options.show.target && !target.closest(options.show.target[0]).length) {
1465 var options = this.options,
1466 showTarget = options.show.target,
1467 hideTarget = options.hide.target,
1468 showEvents = options.show.event ? $.trim('' + options.show.event).split(' ') : [],
1469 hideEvents = options.hide.event ? $.trim('' + options.hide.event).split(' ') : [];
1475 …if(/mouse(over|enter)/i.test(options.show.event) && !/mouse(out|leave)/i.test(options.hide.event))…
1501 function() { this.render(typeof event === 'object' || options.show.ready); },
1502 options.show.delay
1512 if(options.show.ready || options.prerender) { hoverIntent.call(this, event); }
1518 options = this.options,
1519 posOptions = options.position,
1522 showTarget = options.show.target,
1523 hideTarget = options.hide.target,
1530 showEvents = options.show.event ? $.trim('' + options.show.event).split(' ') : [],
1531 hideEvents = options.hide.event ? $.trim('' + options.hide.event).split(' ') : [];
1535 $.each(options.events, function(name, callback) {
1540 if(/mouse(out|leave)/i.test(options.hide.event) && options.hide.leave === 'window') {
1549 if(options.hide.fixed) {
1557 else if(/mouse(over|enter)/i.test(options.show.event)) {
1564 if(('' + options.hide.event).indexOf('unfocus') > -1) {
1579 if('number' === typeof options.hide.inactive) {
1593 if('number' === typeof options.hide.distance) {
1595 limit = this.options.hide.distance,
1613 if(options.hide.event) {
1644 this.options.show.target[0],
1645 this.options.hide.target[0],
1647 this.options.position.container[0],
1648 this.options.position.viewport[0],
1649 this.options.position.container.closest('html')[0], // unfocus
1748 QTIP = $.fn.qtip = function(options, notation, newValue)
1750 var command = ('' + options).toLowerCase(), // Parse command
1762 else if('string' === typeof options) {
1791 else if('object' === typeof options || !arguments.length) {
1793 opts = sanitizeOptions($.extend(TRUE, {}, options));
1831 if(attr === title && api && 'object' === typeof api && api.options.suppress) {
1837 if(api && api.options.content.attr === title && api.cache.attr) {
2044 function Tip(qtip, options) { argument
2046 this.options = options;
2047 this.offset = options.offset;
2048 this.size = [ options.width, options.height ];
2087 this.size[0] = this.options.height;
2088 this.size[1] = this.options.width;
2091 this.size[0] = this.options.width;
2092 this.size[1] = this.options.height;
2098 ….y === CENTER && this.element.position().top + (this.size[1] / 2) + this.options.offset < titlebar…
2103 var my = this.qtip.options.position.my;
2168 width = this.options['width'],
2169 height = this.options['height'],
2228 var c = this.corner = (HASCANVAS || BROWSER.ie) && this._parseCorner(this.options.corner);
2251 options = this.options,
2253 mimic = options.mimic,
2290 if(options.border && border < 1 && !INVALID.test(color[1])) { color[0] = color[1]; }
2293 this.border = border = options.border !== TRUE ? options.border : border;
2409 userOffset = this.options.offset,
2457 method = api.options.position.adjust.method.split(' '),
2548 return new Tip(api, api.options.style.tip);
2555 TIP.sanitize = function(options) { argument
2556 if(options.style && 'tip' in options.style) {
2557 var opts = options.style.tip;
2558 if(typeof opts !== 'object') { opts = options.style.tip = { corner: opts }; }
2685 if(current && current.options.show.modal.escape && event.keyCode === 27) {
2692 if(current && current.options.show.modal.blur) {
2705 if(api.options.show.modal.stealfocus !== FALSE) {
2716 options = api.options.show.modal,
2717 effect = options.effect,
2728 if(state && options.stealfocus !== FALSE) {
2733 elem.toggleClass('blurs', options.blur);
2788 function Modal(api, options) { argument
2789 this.options = options;
2800 if(!this.options.on) { return this; }
2888 return new Modal(api, api.options.show.modal);
3375 style = this.qtip.options.style,
3376 container = this.qtip.options.position.container,