X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/884be9d702f99a38cd9b04c4fdedca887286f35d..6280673f35e13e75e81c5b7821bd2a44a1831eab:/apps/wolnelektury_core/static/js/picture.js diff --git a/apps/wolnelektury_core/static/js/picture.js b/apps/wolnelektury_core/static/js/picture.js index 7c5ff9c39..2464220e4 100644 --- a/apps/wolnelektury_core/static/js/picture.js +++ b/apps/wolnelektury_core/static/js/picture.js @@ -54,11 +54,13 @@ } var initial_hash = window.location.hash; if (initial_hash) { - var mk = null; - if (initial_hash.startsWith('#object-')) { + var mk = null, + objectPrefix = '#object-', + themePrefix = '#theme-'; + if (initial_hash.substr(0, objectPrefix.length) === objectPrefix) { $("[href=#picture-objects]").trigger('click'); - } else if (initial_hash.startsWith('#theme-')) { - $("[href=#picutre-themes]").trigger('click'); + } else if (initial_hash.substr(0, themePrefix.length) === themePrefix) { + $("[href=#picture-themes]").trigger('click'); } mk = $("[href=" + initial_hash + "]").eq(0); self._initial_mark = self.createMark({ @@ -230,7 +232,6 @@ return $mark.get(0); }, }); -}(jQuery)); $(document).ready(function() { @@ -249,3 +250,4 @@ $(document).ready(function() { }); +}(jQuery));