We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb8998 commit 09c4386Copy full SHA for 09c4386
js/script.js
@@ -583,11 +583,11 @@ var executeDataAndCode = function () {
583
584
var setPath = function (category, algorithm, file) {
585
var path = category ? category + (algorithm ? '/' + algorithm + (file ? '/' + file : '') : '') : '';
586
- setHashValue('algorithm', path);
+ setHashValue('path', path);
587
};
588
589
var getPath = function () {
590
- var hash = getHashValue('algorithm');
+ var hash = getHashValue('path');
591
if (hash) {
592
var parts = hash.split('/');
593
return {category: parts[0], algorithm: parts[1], file: parts[2]};
0 commit comments