Skip to content

Commit d3df858

Browse files
committed
missed an equal sign
1 parent 371efce commit d3df858

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/jquery.mobile.dialog.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $.widget( "mobile.dialog", $.mobile.widget, {
3535
*/
3636
$el
3737
.bind( "vclick submit", function( e ) {
38-
var $target = $( e.target ).closest( e.type == "vclick" ? "a" : "form" );
38+
var $target = $( e.target ).closest( e.type === "vclick" ? "a" : "form" );
3939

4040
if( $target.length && !$target.jqmData( "transition" ) ) {
4141
$target

0 commit comments

Comments
 (0)