diff --git a/fhem/CHANGED b/fhem/CHANGED index 2f280c84f..ff23b77a0 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 95_Dashboard: fixed javascript bug causing tabs not to load - feature: 36_DavisVantage.zip (author: "habeIchVergessen") Receive Davis Vantage Weather Stations with JeeLink and the KeyValueProtocol module diff --git a/fhem/www/pgm2/dashboard.js b/fhem/www/pgm2/dashboard.js index 04d069141..4b5b86b12 100644 --- a/fhem/www/pgm2/dashboard.js +++ b/fhem/www/pgm2/dashboard.js @@ -319,7 +319,7 @@ function dashboard_get_params() { function dashboard_setlock(iTabIndex){ if(is_dashboard_flexible()) { - $( "#dashboard_tab" + iTabIndex + " .dashboard_column" ).draggable( "destroy"); + $( "#dashboard_tab" + iTabIndex + " .dashboard_widget" ).draggable( "destroy"); } else { $( "#dashboard_tab" + iTabIndex + " .dashboard_column" ).sortable( "destroy");