From ad3be84283edfae2f87afe4f3618201f8eeaeae7 Mon Sep 17 00:00:00 2001 From: more onion Date: Wed, 7 May 2014 14:03:19 +0200 Subject: [PATCH] Make links work in checkbox labels The label of the checkbox might contain a link. If clicked, it didn't work but toggled the checkbox. Using $handle instead of $picker solves this problem. --- components/Picker/jquery.fs.picker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Picker/jquery.fs.picker.js b/components/Picker/jquery.fs.picker.js index 71cd19d..c0a7688 100755 --- a/components/Picker/jquery.fs.picker.js +++ b/components/Picker/jquery.fs.picker.js @@ -201,7 +201,7 @@ .on("deselect.picker", data, _onDeselect) .data("picker", data); - data.$picker.on("click.picker", data, _onClick); + data.$handle.on("click.picker", data, _onClick); } }