fhem-mirror/www/pgm2/floorplan_click.js
ulimaass 09b530a795 FLOORPLAN: Added javascripts
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@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;
});
});