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

Commit

Permalink
Few more optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed Jan 19, 2011
1 parent 6d38e12 commit e562916
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 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: Tue Jan 18 17:28:31 2011 +0000
* Date: Wed Jan 19 13:03:40 2011 +0000
*/

/* Fluid class for determining actual width in IE */
Expand Down
6 changes: 3 additions & 3 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: Tue Jan 18 17:28:31 2011 +0000
* Date: Wed Jan 19 13:03:40 2011 +0000
*/

"use strict"; // Enable ECMAScript "strict" operation for this function. See more: http://ejohn.org/blog/ecmascript-5-strict-mode-json-and-more/
Expand All @@ -28,7 +28,7 @@
uitooltip = 'ui-tooltip',
widget = 'ui-widget',
disabled = 'ui-state-disabled',
selector = '.qtip.'+uitooltip,
selector = 'div.qtip.'+uitooltip,
focusClass = uitooltip + '-focus',
hideOffset = '-31000px';

Expand Down Expand Up @@ -1504,7 +1504,7 @@ function(name, func) {
};
});

$(document).ready(function() {
$(window).load(function() {
var doc = document,
docBody = doc.body;

Expand Down
12 changes: 6 additions & 6 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.

2 changes: 1 addition & 1 deletion src/core.js
Expand Up @@ -1469,7 +1469,7 @@ function(name, func) {
};
});

$(document).ready(function() {
$(window).load(function() {
var doc = document,
docBody = doc.body;

Expand Down
2 changes: 1 addition & 1 deletion src/intro.js
Expand Up @@ -14,7 +14,7 @@
uitooltip = 'ui-tooltip',
widget = 'ui-widget',
disabled = 'ui-state-disabled',
selector = '.qtip.'+uitooltip,
selector = 'div.qtip.'+uitooltip,
focusClass = uitooltip + '-focus',
hideOffset = '-31000px';

Expand Down

0 comments on commit e562916

Please sign in to comment.