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

Commit 0e96ca0

Browse files
committed
Popup: fix improper refrence to body Fixes #6318 - Issue with popup on 1.4.0a
1 parent 40857b3 commit 0e96ca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ $.widget( "mobile.popup", {
102102
});
103103

104104
if ( this._page.length === 0 ) {
105-
this._page = this.body;
105+
this._page = $( "body" );
106106
}
107107

108108
if ( currentOptions.enhanced ) {

0 commit comments

Comments
 (0)