Temp solution:
modify flexo-anim.js’s code to look like this:
/* vim: set noai ts=4 sw=4: */
/*
* flexo-anim.js by Heath Harrelson, Copyright (C) 2011
*
* Version: 2.0
*
* Expands and collapses menus. Used by the Flexo Archives WordPress widget
* (https://www.ads-software.com/extend/plugins/flexo-archives-widget/).
*
* This code is based on things found at the following page:
* https://www.learningjquery.com/2007/03/accordion-madness
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
jQuery(document).ready(
function () {
jQuery('ul.flexo-list').hide(); // hide year lists
jQuery('a.flexo-link').click(
function() {
jQuery(this).next().slideToggle('fast');
return false;
}
);
jQuery('a.flexo-link:first').click();
}
);