diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-12-06 14:42:10 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-12-06 14:42:10 -0500 |
commit | 3ec0c2e5728da9b9b9955dfe18073d3985e61a52 (patch) | |
tree | d031620704fde888e044b0f8f562f89ebcea08a6 /ui/jquery.ui.core.js | |
parent | b239298946b466a0c87a0c1ead4ccd75141ed740 (diff) | |
download | jquery-ui-3ec0c2e5728da9b9b9955dfe18073d3985e61a52.tar.gz jquery-ui-3ec0c2e5728da9b9b9955dfe18073d3985e61a52.zip |
Core: Removed $.ui.isOver() and $.ui.isOverAxis(). Fixes #8891 - Remove $.ui.isOver() and $.ui.isOverAxis().
Diffstat (limited to 'ui/jquery.ui.core.js')
-rw-r--r-- | ui/jquery.ui.core.js | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/ui/jquery.ui.core.js b/ui/jquery.ui.core.js index 288634376..17fad86b4 100644 --- a/ui/jquery.ui.core.js +++ b/ui/jquery.ui.core.js @@ -313,16 +313,6 @@ $.extend( $.ui, { has = ( el[ scroll ] > 0 ); el[ scroll ] = 0; return has; - }, - - // these are odd functions, fix the API or move into individual plugins - isOverAxis: function( x, reference, size ) { - //Determines when x coordinate is over "b" element axis - return ( x > reference ) && ( x < ( reference + size ) ); - }, - isOver: function( y, x, top, left, height, width ) { - //Determines when x, y coordinates is over "b" element - return $.ui.isOverAxis( y, top, height ) && $.ui.isOverAxis( x, left, width ); } }); |