summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-02-03 19:53:43 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-02-03 19:53:43 +0100
commit12247b2ce3e49382524ef67feec0ba7622a47066 (patch)
treeee39c19841bb55fbfdb0d39a6d7e225eb02ee0a3
parent2c6d010dbae050d8ba140e69ecff3376b36d039f (diff)
Ne pas déplier l'article lors du clic sur l'icône lien externe
Corrige http://marienfressinaud.fr/index.php?article141/freshrss-0-7-ca-casse-et-ca-passe#c1391357481-1
-rw-r--r--p/scripts/main.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js
index 48386b1d6..2345bf531 100644
--- a/p/scripts/main.js
+++ b/p/scripts/main.js
@@ -443,7 +443,7 @@ function init_shortcuts() {
function init_stream(divStream) {
divStream.on('click', '.flux_header', function (e) { //flux_header_toggle
- if ($(e.target).closest('.item.website > a').length > 0) {
+ if ($(e.target).closest('.item.website, .item.link').length > 0) {
return;
}
var old_active = $(".flux.current"),
@@ -470,7 +470,7 @@ function init_stream(divStream) {
return false;
});
- divStream.on('click', '.item.title>a', function (e) {
+ divStream.on('click', '.item.title > a', function (e) {
if (e.ctrlKey) {
return true; //Allow default control-click behaviour such as open in backround-tab
}
@@ -483,7 +483,7 @@ function init_stream(divStream) {
});
if (auto_mark_site) {
- divStream.on('click', '.flux .link a', function () {
+ divStream.on('click', '.flux .link > a', function () {
mark_read($(this).parent().parent().parent(), true);
});
}