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

Commit e302086

Browse files
authored
Fix missing double quotes in recent #8649
1 parent 3b95619 commit e302086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/pagecontainer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ $.widget( "mobile.pagecontainer", {
565565
return $.proxy( function( html, textStatus, xhr ) {
566566

567567
// Check that Content-Type is "text/html" (https://github.com/jquery/jquery-mobile/issues/8640)
568-
if ( !/^text\/html\b/.test( xhr.getResponseHeader('Content-Type') ) ) {
568+
if ( !/^text\/html\b/.test( xhr.getResponseHeader("Content-Type") ) ) {
569569
// Display error message for unsupported content type
570570
if ( settings.showLoadMsg ) {
571571
this._showError();

0 commit comments

Comments
 (0)