Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Popup: fix improper refrence to body Fixes #6318 - Issue with popup o…
Browse files Browse the repository at this point in the history
…n 1.4.0a
  • Loading branch information
arschmitz committed Aug 9, 2013
1 parent 40857b3 commit 0e96ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/popup.js
Expand Up @@ -102,7 +102,7 @@ $.widget( "mobile.popup", {
});

if ( this._page.length === 0 ) {
this._page = this.body;
this._page = $( "body" );
}

if ( currentOptions.enhanced ) {
Expand Down

0 comments on commit 0e96ca0

Please sign in to comment.