Lines Matching refs:api
234 QTIP.api[this.id] = this;
284 delete QTIP.api[this.id];
334 content.text = function(event, api) { argument
335 var loading = text || $(this).attr(api.options.content.attr) || 'Loading...',
338 $.extend({}, ajax, { context: api })
342 if(content && once) { api.set('content.text', content); }
346 if(api.destroyed || xhr.status === 0) { return; }
347 api.set('content.text', status + ': ' + error);
350 return !once ? (api.set('content.text', loading), deferred) : loading;
1331 var api = QTIP.api[ $.attr(this, ATTR_ID) ];
1332 api && !api.disabled && method.apply(api, arguments);
1626 var api; if((api = $(this).data(NAMESPACE))) { api.destroy(); }
1651 var api = $.data(this, NAMESPACE);
1652 if(!api) { return TRUE; }
1655 if(event && event.timeStamp) { api.cache.event = event; }
1660 api.set(notation, newValue);
1663 returned = api.get(notation);
1669 else if(api[command]) {
1670 api[command].apply(api, args);
1691 var options, targets, events, namespace, api, id;
1695 id = !id || id === FALSE || id.length < 1 || QTIP.api[id] ? QTIP.nextid++ : id;
1701 api = init($(this), id, opts);
1702 if(api === FALSE) { return TRUE; }
1703 else { QTIP.api[id] = api; }
1704 options = api.options;
1708 if(this.initialize === 'initialize') { this(api); }
1733 api._storeMouse(event);
1734 api.cache.onTarget = TRUE;
1741 api.render(typeof event === 'object' || options.show.ready);
1748 if(api.disabled) { return FALSE; }
1751 api.cache.event = $.extend({}, event);
1752 api.cache.target = event ? $(event.target) : [undefined];
1756 clearTimeout(api.timers.show);
1757 api.timers.show = setTimeout(render, options.show.delay);
1759 targets.hide.bind(events.hide, function() { clearTimeout(api.timers.show); });
1774 QTIP.api = {};
1781 api = $.data(self, 'qtip');
1783 if(attr === title && api && 'object' === typeof api && api.options.suppress) {
1789 if(api && api.options.content.attr === title && api.cache.attr) {
1790 api.set('content.text', val);
1881 effect: function(api, pos, viewport) { argument
2382 reposition: function(event, api, pos, viewport) { argument
2385 var cache = api.cache,
2388 method = api.options.position.adjust.method.split(' '),
2490 TIP = PLUGINS.tip = function(api) {
2491 return new Tip(api, api.options.style.tip);
2542 ;PLUGINS.viewport = function(api, position, posOptions, targetWidth, targetHeight, elemWidth, elemH… argument
2545 tooltip = api.elements.tooltip,
2554 cache = api.cache,
2555 tip = api.plugins.tip,
2649 tooltip.removeClass(api.cache.lastClass).addClass( (api.cache.lastClass = newClass) );