diff --git a/js/widgets/popup.js b/js/widgets/popup.js index af591d674ca..f455535a7f7 100644 --- a/js/widgets/popup.js +++ b/js/widgets/popup.js @@ -632,8 +632,8 @@ $.widget( "mobile.popup", { }, _safelyBlur: function( currentElement ){ - if (currentElement !== this.window[ 0 ] - && currentElement.nodeName.toLowerCase() !== "body") { + if (currentElement !== this.window[ 0 ] && + currentElement.nodeName.toLowerCase() !== "body") { $( currentElement ).blur(); } },