2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00
fhem-mirror/fhem/www/pgm2/floorplan_click.js
ulimaass 5de8ab705e FLOORPLAN: Added javascripts
git-svn-id: https://svn.fhem.de/fhem/trunk@7968 2b470e98-0d58-463d-a4d8-8e2adae1ed80
2015-02-14 11:49:21 +00:00

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;
});
});