fix incorrect condition for jump-to-slide
This commit is contained in:
parent
fb1fecd754
commit
3301d3036e
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -71,11 +71,11 @@ export default class JumpToSlide {
|
||||||
|
|
||||||
// If no valid index was found and the input query is a
|
// If no valid index was found and the input query is a
|
||||||
// string, fall back on a simple search
|
// string, fall back on a simple search
|
||||||
if( !indices && /\S+/i.test( query ) ) {
|
if( !indices && /\S+/i.test( query ) && query.length > 1 ) {
|
||||||
indices = this.search( query );
|
indices = this.search( query );
|
||||||
}
|
}
|
||||||
|
|
||||||
if( indices && query !== '' && query.length > 1 ) {
|
if( indices && query !== '' ) {
|
||||||
this.Reveal.slide( indices.h, indices.v, indices.f );
|
this.Reveal.slide( indices.h, indices.v, indices.f );
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue