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

Commit

Permalink
.qtip() can now be called withour any parameters to create title-base…
Browse files Browse the repository at this point in the history
…d tooltips, as in qTip1
  • Loading branch information
Craga89 committed Nov 23, 2010
1 parent 9f58b12 commit 6c1f10b
Show file tree
Hide file tree
Showing 5 changed files with 8 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 Nov 18 23:48:37 2010 +0000
* Date: Thu Nov 18 23:52:21 2010 +0000
*/

.ui-tooltip-accessible{
Expand Down
4 changes: 2 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 Nov 18 23:48:37 2010 +0000
* Date: Thu Nov 18 23:52:21 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 @@ -1347,7 +1347,7 @@ $.fn.qtip = function(options, notation, newValue)
}

// No API commands. validate provided options and setup qTips
else if('object' === typeof options)
else if('object' === typeof options || !arguments.length)
{
// Sanitize options
targets = sanitizeOptions(opts, this);
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.

0 comments on commit 6c1f10b

Please sign in to comment.