Skip to content
This repository has been archived by the owner on Jun 14, 2020. It is now read-only.

Commit

Permalink
Fixed small typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Dec 9, 2010
1 parent d29d89b commit 72fd260
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dist/jquery.qtip.css
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Thu Dec 9 03:08:07 2010 +0000
* Date: Thu Dec 9 03:56:41 2010 +0000
*/

.ui-tooltip-accessible{
Expand Down
5 changes: 3 additions & 2 deletions dist/jquery.qtip.js
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Thu Dec 9 03:08:07 2010 +0000
* Date: Thu Dec 9 03:56:41 2010 +0000
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand Down Expand Up @@ -1379,6 +1379,7 @@ $.fn.qtip.bind = function(opts, event)
self = init.call(this, id, opts);
if(self === FALSE) { return TRUE; }
options = self.options;

// Initialize plugins
$.each($.fn.qtip.plugins, function() {
if(this.initialize === 'initialize') { this(self); }
Expand Down Expand Up @@ -1423,7 +1424,7 @@ $.fn.qtip.bind = function(opts, event)
targets.show.bind(events.show, hoverIntent);

// Prerendering is enabled, create tooltip now
if(opts.show.ready || opts.prerender) { hoverIntent(event); }
if(options.show.ready || options.prerender) { hoverIntent(event); }
});
};

Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.qtip.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/jquery.qtip.pack.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/core.js
Expand Up @@ -1354,6 +1354,7 @@ $.fn.qtip.bind = function(opts, event)
self = init.call(this, id, opts);
if(self === FALSE) { return TRUE; }
options = self.options;

// Initialize plugins
$.each($.fn.qtip.plugins, function() {
if(this.initialize === 'initialize') { this(self); }
Expand Down Expand Up @@ -1398,7 +1399,7 @@ $.fn.qtip.bind = function(opts, event)
targets.show.bind(events.show, hoverIntent);

// Prerendering is enabled, create tooltip now
if(opts.show.ready || opts.prerender) { hoverIntent(event); }
if(options.show.ready || options.prerender) { hoverIntent(event); }
});
};

Expand Down

0 comments on commit 72fd260

Please sign in to comment.