Stop Propagation on click in a checkbox

Issue #105 resolved
Karsten Bandlow created an issue

Everytime I select or deselct a message Piler loads the message in the messagewindow. This isnt necessary, so here a little patch to disable this behavior.

helper.tpl on line 47 onclick="Piler.stop_propagation(event);"

in piler-in.js

stop_propagation:function(event) {
Piler.log("[stop_propagation]"); try { event.stopPropagation();
} catch ( e ) { Piler.log("[stop_propagation]", e ); } },

Comments (1)

  1. Log in to comment