seit dem letzten Layout rework ist das nicht mehr benutzt,
also weg damit
jquery jquery-ui jquery.cookie jquery.checkall jquery.download
jquery/jquery.form jquery/fixes client_js
jquery/jquery.tooltipster.min
- common part_selection switchmenuframe
+ common part_selection
), "jquery/ui/i18n/jquery.ui.datepicker-$::myconfig{countrycode}");
$self->{favicon} ||= "favicon.ico";
sub javascripts {
qw(
js/jquery.cookie.js
- js/switchmenuframe.js
);
}
+++ /dev/null
-var vSwitch_Menu = 1;
-function Switch_Menu() {
- vSwitch_Menu=!vSwitch_Menu;
- SetMenuFolded(vSwitch_Menu);
-}
-function SetMenuFolded(on) {
- if (on) {
- $('#html-menu').removeClass('folded');
- $('#content').removeClass('folded');
- } else {
- $('#html-menu').addClass('folded');
- $('#content').addClass('folded');
- }
-}
-$(function(){
- SetMenuFolded(vSwitch_Menu);
-})