diff options
| author | 2014-04-10 23:39:41 -0400 | |
|---|---|---|
| committer | 2014-04-10 23:39:41 -0400 | |
| commit | 7e0566b0a183208e020ff31d5c92ef794de19a1e (patch) | |
| tree | 65cc377baebab0595835d5feac95da80daad426c /p/scripts | |
| parent | 11e86013aa7188325461e9d82fa18e87b69e25b6 (diff) | |
Fix click action on article
Before, when the user clicks on an article header one, it expands. When it clicks a second time, it collapses.
When it clicks a third time it stays collapsed instead of expand.
Now it toggles the article between expanded and collapsed state.
Diffstat (limited to 'p/scripts')
| -rw-r--r-- | p/scripts/main.js | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/p/scripts/main.js b/p/scripts/main.js index 18e1573cf..a7cccc871 100644 --- a/p/scripts/main.js +++ b/p/scripts/main.js @@ -207,14 +207,10 @@ function mark_favorite(active) { } function toggleContent(new_active, old_active) { - old_active.removeClass("active"); - if (new_active.length === 0) { return; } - old_active.removeClass("current"); - if (does_lazyload) { new_active.find('img[data-original], iframe[data-original]').each(function () { this.setAttribute('src', this.getAttribute('data-original')); @@ -226,9 +222,10 @@ function toggleContent(new_active, old_active) { if (isCollapsed) { new_active.addClass("active"); } + old_active.removeClass("active current"); new_active.addClass("current"); } else { - new_active.toggleClass("current"); + new_active.toggleClass('active'); } var box_to_move = "html,body", |
