1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

few fixes to analytics, checkboxes, and sweetalerts

This commit is contained in:
Kyle Spearrin
2016-12-02 00:05:57 -05:00
parent 6da0d81032
commit 4741eb91dd
3 changed files with 8 additions and 2 deletions

View File

@@ -70,6 +70,10 @@ function initUtilsService() {
}
doc.on('click', '.list-section-item', function (e) {
if (e.isDefaultPrevented && e.isDefaultPrevented.name === 'returnTrue') {
return;
}
var text = $(this).find('input, textarea').not('input[type="checkbox"], input[type="radio"], input[type="hidden"]');
var checkbox = $(this).find('input[type="checkbox"]');
var select = $(this).find('select');