diff --git a/scripts/uncompressed/history.js b/scripts/uncompressed/history.js index 299e7721..7b548247 100644 --- a/scripts/uncompressed/history.js +++ b/scripts/uncompressed/history.js @@ -497,6 +497,9 @@ if ( /[a-z]+\:\/\//.test(url) ) { // Full URL } + else if ( url.substring(0,2) === '//' ) { + // Full URL (protocol-less) + } else if ( firstChar === '/' ) { // Root URL fullUrl = History.getRootUrl()+url.replace(/^\/+/,'');