aboutsummaryrefslogtreecommitdiff
path: root/p/scripts
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2017-06-02 22:53:13 +0200
committerGravatar Alexis Degrugillier <github@ainw.org> 2017-06-02 22:53:13 +0200
commit5f942cc1c9801eef440cd1e85e36b03c05aaa8c5 (patch)
treeee019ee6f7738f84cdc83b64c074d82d93e9f8ce /p/scripts
parentd100b2deb1c8ddc7fb8422abe420e2d135c6a8e2 (diff)
Add support for a new shortcut in reader view
Now you can open the original page in the reader view with the same shortcut you'll use in the normal view. I've changed how we identify the link to make it more flexible. The previous way was too restrictive since the selector used a really strict path to get the url. There was another way to achieve the same thing without changing the selector. It was quite ugly since some meaningless class would be added on the markup to match the selector query. See #1400
Diffstat (limited to 'p/scripts')
-rw-r--r--p/scripts/main.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index f01af20ff..78a3772f6 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -661,7 +661,7 @@ function init_shortcuts() {
});
shortcut.add(shortcuts.go_website, function () {
- var url_website = $('.flux.current > .flux_header > .title > a').attr("href");
+ var url_website = $('.flux.current a.go_website').attr("href");
if (context.auto_mark_site) {
$(".flux.current").each(function () {