Skip to content
Snippets Groups Projects
Commit 1a6d1fc0 authored by Will Long's avatar Will Long
Browse files

prevent toggle for certain elements in trigger element

parent 2f65d066
Branches
Tags 1.0.0-alpha3
No related merge requests found
......@@ -12,6 +12,10 @@
$trigger.click(function () {
toggleExpanded($trigger, $target);
});
// Allow some elements within trigger element to be clicked w/o toggle.
$('a, btn, input', $trigger).click(function (event) {
event.stopPropagation();
});
// Allow hover to apply to both rows.
$trigger.hover(function () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment