Skip to content
Snippets Groups Projects
Commit 565f5f0a authored by Don Mitchell's avatar Don Mitchell
Browse files

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

parent ae4a854e
No related merge requests found
......@@ -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(); });
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment