aboutsummaryrefslogtreecommitdiff
path: root/p/scripts/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'p/scripts/main.js')
-rw-r--r--p/scripts/main.js7
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",