From 3de512bf7b4c6a4f1b6378ab8817ddb583a07f8d Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Sat, 9 Sep 2017 23:32:29 +0200 Subject: [PATCH] Disable transition effects --- public_html/inc/lib/bootstrap/js/bootstrap.js | 2 +- public_html/index.html | 24 ++++++++++++------- 2 files changed, 16 insertions(+), 10 deletions(-) diff --git a/public_html/inc/lib/bootstrap/js/bootstrap.js b/public_html/inc/lib/bootstrap/js/bootstrap.js index 8a2e99a..25a4403 100644 --- a/public_html/inc/lib/bootstrap/js/bootstrap.js +++ b/public_html/inc/lib/bootstrap/js/bootstrap.js @@ -569,7 +569,7 @@ if (typeof jQuery === 'undefined') { Collapse.VERSION = '3.3.7' - Collapse.TRANSITION_DURATION = 350 + Collapse.TRANSITION_DURATION = 0 Collapse.DEFAULTS = { toggle: true diff --git a/public_html/index.html b/public_html/index.html index 3091f29..e0ef584 100644 --- a/public_html/index.html +++ b/public_html/index.html @@ -26,6 +26,12 @@ div.panel-heading, li.list-group-item, a { cursor: pointer; } +.collapsing { + -webkit-transition: none; + transition: none; + display: none; +} + .count-tag { display: inline-block; width: 6em; @@ -84,7 +90,7 @@ div.panel-heading, li.list-group-item, a {
-