diff options
| author | 2013-12-18 23:49:51 +0100 | |
|---|---|---|
| committer | 2013-12-18 23:49:51 +0100 | |
| commit | 3280b14ed6208a672c4c86878e3b80e3fcb14c32 (patch) | |
| tree | fe91b2e007992a9b62525e26da0bc1e0ba35b21f /public/scripts | |
| parent | 5c779a09eb32507fb85e96d647ed1358a93678f2 (diff) | |
CSS : style pour les titres trop long (corrections 2)
Correction de
https://github.com/marienfressinaud/FreshRSS/commit/5c779a09eb32507fb85e96d647ed1358a93678f2
En réponse à https://github.com/marienfressinaud/FreshRSS/pull/322
Diffstat (limited to 'public/scripts')
| -rw-r--r-- | public/scripts/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/scripts/main.js b/public/scripts/main.js index 022e0f86f..3bd23a669 100644 --- a/public/scripts/main.js +++ b/public/scripts/main.js @@ -388,9 +388,9 @@ function init_shortcuts() { } function init_stream_delegates(divStream) { - divStream.on('click', '.flux_header>.item.title, .flux_header>.item.date', function (e) { //flux_header_toggle + divStream.on('click', '.flux_header', function (e) { //flux_header_toggle var old_active = $(".flux.current"), - new_active = $(this).parent().parent(); + new_active = $(this).parent(); isCollapsed = true; if (e.target.tagName.toUpperCase() === 'A') { //Leave real links alone if (auto_mark_article) { |
