fix dropdown toggle with touchstart

This commit is contained in:
Mario Volke 2014-11-10 13:51:20 +01:00
parent fc66df8894
commit da872daa7d
1 changed files with 4 additions and 1 deletions

View File

@ -117,7 +117,10 @@ ngModule.directive('woDropdown', function($document, $timeout) {
}
}
elm.on('touchstart click', toggle);
elm.on('touchstart click', function(e) {
e.preventDefault();
toggle();
});
// close if user clicks button in dropdown list
dropdown.on('touchstart.woDropdown click.woDropdown', 'button', disappear);