diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-28 14:58:48 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-28 14:58:48 -0700 |
commit | d12b360e926c5df8da1639a5935fcd3e9236e4e3 (patch) | |
tree | a5eed2bf4fa37183435a39ecbd73a0d75aff0c22 /view/theme/redbasic/js/redbasic.js | |
parent | 3e6088c6142d1dabbfdbb8b5df276ae942bd3554 (diff) | |
parent | 5564b47dbc640b30a8090a6138f0c2f841accbe9 (diff) | |
download | volse-hubzilla-d12b360e926c5df8da1639a5935fcd3e9236e4e3.tar.gz volse-hubzilla-d12b360e926c5df8da1639a5935fcd3e9236e4e3.tar.bz2 volse-hubzilla-d12b360e926c5df8da1639a5935fcd3e9236e4e3.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'view/theme/redbasic/js/redbasic.js')
-rw-r--r-- | view/theme/redbasic/js/redbasic.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 14b977b80..fb048518e 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -3,6 +3,13 @@ */ $(document).ready(function() { + //this is a hotfix to make collapsible bs panels work again. this needs fixing in bootstrap. + $('a').on('click', function(e) { + if($(this).data('toggle') == 'collapse') { + e.preventDefault(); + } + }); + // CSS3 calc() fallback (for unsupported browsers) $('body').append('<div id="css3-calc" style="width: 10px; width: calc(10px + 10px); display: none;"></div>'); if( $('#css3-calc').width() == 10) { |