diff options
author | Hakim El Hattab | 2014-03-25 15:12:10 +0100 |
---|---|---|
committer | Hakim El Hattab | 2014-03-25 15:12:10 +0100 |
commit | da82c8ce81a5acc8b14002a5818a32ce0c89f7b8 (patch) | |
tree | 9b24d8c43c83f27be62c7cb2b7e04ffc525f5550 /js/reveal.js | |
parent | 3d7c21256cee8dc96ce43b08c3776b277b93f0ba (diff) |
limit named links to [a-zA-Z0-9\-\_\:\.] #836
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/js/reveal.js b/js/reveal.js index 8dc2e63..cfdbc2f 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -2274,8 +2274,16 @@ var Reveal = (function(){ // If the first bit is invalid and there is a name we can // assume that this is a named link if( isNaN( parseInt( bits[0], 10 ) ) && name.length ) { - // Find the slide with the specified name - var element = document.querySelector( '#' + name ); + var element; + + try { + // Find the slide with the specified name + element = document.querySelector( '#' + name ); + } + catch( e ) { + // If the ID is an invalid selector a harmless SyntaxError + // may be thrown here. + } if( element ) { // Find the position of the named slide and navigate to it @@ -2320,9 +2328,16 @@ var Reveal = (function(){ else { var url = '/'; + // Attempt to create a named link based on the slide's ID + var id = currentSlide.getAttribute( 'id' ); + if( id ) { + id = id.toLowerCase(); + id = id.replace( /[^a-zA-Z0-9\-\_\:\.]/g, '' ); + } + // If the current slide has an ID, use that as a named link - if( currentSlide && typeof currentSlide.getAttribute( 'id' ) === 'string' ) { - url = '/' + currentSlide.getAttribute( 'id' ); + if( currentSlide && typeof id === 'string' && id.length ) { + url = '/' + id; } // Otherwise use the /h/v index else { |