aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.spinner.js
diff options
context:
space:
mode:
authorScott González <scott.gonzalez@gmail.com>2011-10-20 16:57:47 -0400
committerScott González <scott.gonzalez@gmail.com>2011-10-20 16:57:47 -0400
commita0856efef3c392d413aa6cd9bd084dc601a337c6 (patch)
tree3a1f4a5aeea257fcf0d201f60fe259878e0a3c58 /ui/jquery.ui.spinner.js
parentc145f1698aa4bfb8b0d1c94e2bfa83399f1de0f3 (diff)
downloadjquery-ui-a0856efef3c392d413aa6cd9bd084dc601a337c6.tar.gz
jquery-ui-a0856efef3c392d413aa6cd9bd084dc601a337c6.zip
Widget: Added window and document properties. Fixes #7801 - Widget: Add document and window properties.
Diffstat (limited to 'ui/jquery.ui.spinner.js')
-rw-r--r--ui/jquery.ui.spinner.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/jquery.ui.spinner.js b/ui/jquery.ui.spinner.js
index 7fc291c00..9c554b2df 100644
--- a/ui/jquery.ui.spinner.js
+++ b/ui/jquery.ui.spinner.js
@@ -53,7 +53,7 @@ $.widget( "ui.spinner", {
// turning off autocomplete prevents the browser from remembering the
// value when navigating through history, so we re-enable autocomplete
// if the page is unloaded before the widget is destroyed. #7790
- this._bind( this.element[0].ownerDocument.defaultView, {
+ this._bind( this.window, {
beforeunload: function() {
this.element.removeAttr( "autocomplete" );
}
@@ -112,7 +112,7 @@ $.widget( "ui.spinner", {
"mousedown .ui-spinner-button": function( event ) {
// ensure focus is on (or stays on) the text field
event.preventDefault();
- if ( document.activeElement !== this.element[ 0 ] ) {
+ if ( this.document[0].activeElement !== this.element[ 0 ] ) {
this.element.focus();
}