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

Commit

Permalink
iOS positioning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Craga89 committed May 2, 2011
1 parent d7fe7a9 commit 64c359f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions dist/jquery.qtip.basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Mon May 2 20:23:02 2011 +0100
* Date: Mon May 2 20:24:21 2011 +0100
*/

"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 @@ -1208,8 +1208,8 @@ function QTip(target, options, id, attr)

// Check if window or document is the target
else if(target[0] === document || target[0] === window) {
targetWidth = target.width();
targetHeight = target.height();
targetWidth = PLUGINS.iOS ? window.innerWidth : target.width();
targetHeight = PLUGINS.iOS ? window.innerHeight : target.height();

if(target[0] === window) {
position = {
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.qtip.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Mon May 2 20:23:02 2011 +0100
* Date: Mon May 2 20:24:21 2011 +0100
*/

/* Fluid class for determining actual width in IE */
Expand Down
6 changes: 3 additions & 3 deletions dist/jquery.qtip.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* http://en.wikipedia.org/wiki/MIT_License
* http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Mon May 2 20:23:02 2011 +0100
* Date: Mon May 2 20:24:21 2011 +0100
*/

"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 @@ -1208,8 +1208,8 @@ function QTip(target, options, id, attr)

// Check if window or document is the target
else if(target[0] === document || target[0] === window) {
targetWidth = target.width();
targetHeight = target.height();
targetWidth = PLUGINS.iOS ? window.innerWidth : target.width();
targetHeight = PLUGINS.iOS ? window.innerHeight : target.height();

if(target[0] === window) {
position = {
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.qtip.min.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1165,8 +1165,8 @@ function QTip(target, options, id, attr)

// Check if window or document is the target
else if(target[0] === document || target[0] === window) {
targetWidth = target.width();
targetHeight = target.height();
targetWidth = PLUGINS.iOS ? window.innerWidth : target.width();
targetHeight = PLUGINS.iOS ? window.innerHeight : target.height();

if(target[0] === window) {
position = {
Expand Down

0 comments on commit 64c359f

Please sign in to comment.