2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00
fhem-mirror/fhem/www/pgm2/floorplan_click.js

13 lines
223 B
JavaScript
Raw Normal View History

$(document).ready(function($){
$("div.fp_device_div.style_1, tr.devicestate").on("click", function(e) {
if (!$(e.target).is('a')) {
$(this).find("a").trigger('click');
return false;
}
return true;
});
});