Stop simple clicks from paging to top w/o disrupting dnd

This commit is contained in:
Don Mitchell
2013-02-11 16:28:22 -05:00
parent ae4a854e18
commit 565f5f0adc

View File

@@ -58,6 +58,9 @@ $(document).ready(function() {
drop: onSectionReordered,
greedy: true
});
// stop clicks on drag bars from doing their thing w/o stopping drag (did this cancel pointer?)
$('.courseware-overview').click(function(e) {e.preventDefault(); });
});