Lines Matching refs:api

231 	QTIP.api[this.id] = this;
283 delete QTIP.api[this.id];
333 content.text = function(event, api) { argument
334 var loading = text || $(this).attr(api.options.content.attr) || 'Loading...',
337 $.extend({}, ajax, { context: api })
341 if(content && once) { api.set('content.text', content); }
345 if(api.destroyed || xhr.status === 0) { return; }
346 api.set('content.text', status + ': ' + error);
349 return !once ? (api.set('content.text', loading), deferred) : loading;
1382 var api = QTIP.api[ $.attr(this, ATTR_ID) ];
1383 api && !api.disabled && method.apply(api, arguments);
1741 var api; if((api = $(this).data(NAMESPACE))) { api.destroy(true); }
1764 var api = $.data(this, NAMESPACE);
1765 if(!api) { return TRUE; }
1768 if(event && event.timeStamp) { api.cache.event = event; }
1773 api.set(notation, newValue);
1776 returned = api.get(notation);
1782 else if(api[command]) {
1783 api[command].apply(api, args);
1796 var api, id;
1800 id = !id || id === FALSE || id.length < 1 || QTIP.api[id] ? QTIP.nextid++ : id;
1803 api = init($(this), id, opts);
1804 if(api === FALSE) { return TRUE; }
1805 else { QTIP.api[id] = api; }
1809 if(this.initialize === 'initialize') { this(api); }
1813 api._assignInitialEvents(event);
1822 QTIP.api = {};
1829 api = $.data(self, 'qtip');
1831 if(attr === title && api && 'object' === typeof api && api.options.suppress) {
1837 if(api && api.options.content.attr === title && api.cache.attr) {
1838 api.set('content.text', val);
1929 effect: function(api, pos, viewport) { argument
2451 reposition: function(event, api, pos, viewport) { argument
2454 var cache = api.cache,
2457 method = api.options.position.adjust.method.split(' '),
2547 TIP = PLUGINS.tip = function(api) {
2548 return new Tip(api, api.options.style.tip);
2700 update: function(api) { argument
2702 current = api;
2705 if(api.options.show.modal.stealfocus !== FALSE) {
2706 focusableElems = api.tooltip.find('*').filter(function() {
2713 toggle: function(api, state, duration) { argument
2715 tooltip = api.tooltip,
2716 options = api.options.show.modal,
2724 self.update(api);
2788 function Modal(api, options) { argument
2792 this.init( (this.qtip = api) );
2809 qtip._bind(tooltip, ['tooltipshow', 'tooltiphide'], function(event, api, duration) { argument
2824 qtip._bind(tooltip, 'tooltipfocus', function(event, api) { argument
2851 OVERLAY.update(api);
2887 MODAL = PLUGINS.modal = function(api) {
2888 return new Modal(api, api.options.show.modal);
2931 ;PLUGINS.viewport = function(api, position, posOptions, targetWidth, targetHeight, elemWidth, elemH… argument
2934 tooltip = api.elements.tooltip,
2943 cache = api.cache,
3037 tooltip.removeClass(api.cache.lastClass).addClass( (api.cache.lastClass = newClass) );
3156 };;PLUGINS.svg = function(api, svg, corner) argument
3257 };;PLUGINS.imagemap = function(api, area, corner, adjustMethod) argument
3309 function Ie6(api, qtip) { argument
3311 this.init( (this.qtip = api) );
3426 IE6 = PLUGINS.ie6 = function(api) {
3428 return BROWSER.ie === 6 ? new Ie6(api) : FALSE;