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

Commit

Permalink
Popup: Correctly apply wrapper class.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Schulhof committed Aug 12, 2013
1 parent c86ce61 commit 85d3158
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/popup.js
Expand Up @@ -136,7 +136,7 @@ $.widget( "mobile.popup", {
this._themeClassFromOption( "ui-overlay-", currentOptions.overlayTheme ) + "'></div>" ),
placeholder: $( "<div style='display: none;'><!-- placeholder --></div>" ),
container: $( "<div class='ui-popup-container ui-popup-hidden ui-popup-truncate" +
( currentOptions.wrapperClass || "" ) + "'></div>" )
( " " + currentOptions.wrapperClass || "" ) + "'></div>" )
},
fragment = this.document[ 0 ].createDocumentFragment();

Expand Down

0 comments on commit 85d3158

Please sign in to comment.