Skip to content

Commit

Permalink
fix a == to ===
Browse files Browse the repository at this point in the history
  • Loading branch information
djsutherland committed Mar 2, 2019
1 parent ce50885 commit f584f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/reveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -3353,7 +3353,7 @@
default:
var indices = getIndices( slide );
value.push( indices.h + 1 );
var sep = format == 'h/v' ? '/' : '.';
var sep = format === 'h/v' ? '/' : '.';
if( isVerticalSlide( slide ) ) value.push( sep, indices.v + 1 );
}
}
Expand Down

0 comments on commit f584f60

Please sign in to comment.