From 28ff65ee292bc3c52318101ccf4c4808130d1d24 Mon Sep 17 00:00:00 2001 From: talkabout <> Date: Tue, 24 Nov 2015 18:49:59 +0000 Subject: [PATCH] 95_Dashboard: fixed javascript bug causing tabs not to load git-svn-id: https://svn.fhem.de/fhem/trunk@9994 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/www/pgm2/dashboard.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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");