Skip to content

Commit

Permalink
Popup: fixed && causing build break.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldeluca committed Oct 20, 2014
1 parent 51f427a commit 6a5ff2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/widgets/popup.js
Expand Up @@ -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();
}
},
Expand Down

0 comments on commit 6a5ff2c

Please sign in to comment.