Commit b9372b31 by Bence Dányi

webui: magic try-catch added

parent 7f856315
var toggleDetails;
$(function() {
toggleDetails = function() {
if ($(this).parent('.entry').hasClass('opened')) {
$(this).parent('.entry').removeClass('opened');
$(this).next('.details').css('height', '0px');
} else {
$(this).parent('.entry').addClass('opened');
if ($(this).data('fallback') == 'slide') {
$(this).next('.details').css('height', 'auto');
try {
if ($(this).parent('.entry').hasClass('opened')) {
$(this).parent('.entry').removeClass('opened');
$(this).next('.details').css('height', '0px');
} else {
$(this).next('.details').css('height',
$(this).next('.details').find('.details-container')[0].offsetHeight + 15 + 'px');
$(this).parent('.entry').addClass('opened');
if ($(this).data('fallback') == 'slide') {
$(this).next('.details').css('height', 'auto');
} else {
$(this).next('.details').css('height',
$(this).next('.details').find('.details-container')[0].offsetHeight + 15 + 'px');
}
}
} catch(ex) {
//make sure we never fail :-)
}
}
$('a[href=#]').click(function(e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment