mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 18:59:33 +00:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
|
|
||
|
$(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;
|
||
|
});
|
||
|
|
||
|
});
|