From b243ec163a41642307a8ed637b9c0021dfbe1cdf Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 3 Jan 2014 15:22:37 +0100 Subject: [PATCH] Changement de hash plus standard https://github.com/marienfressinaud/FreshRSS/pull/340 --- p/scripts/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p/scripts/main.js b/p/scripts/main.js index dbd484473..1a41dac9c 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -223,7 +223,7 @@ function collapse_entry() { function auto_share() { var share = $(".flux.current.active").find('.dropdown-target[id^="dropdown-share"]'); if (share.length) { - window.location.replace('./#' + share.attr('id')); + window.location.hash = share.attr('id'); } }