diff --git a/cms/static/js/views/overview.js b/cms/static/js/views/overview.js index fc96166f51..1f877f752f 100644 --- a/cms/static/js/views/overview.js +++ b/cms/static/js/views/overview.js @@ -3,23 +3,23 @@ $(document).ready(function() { // Section makeDraggable( '.courseware-section', - 'a.section-drag-handle', + '.section-drag-handle', '.courseware-overview', 'article.courseware-overview' ); // Subsection makeDraggable( '.id-holder', - 'a.subsection-drag-handle', + '.subsection-drag-handle', '.subsection-list > ol', '.courseware-section' ); // Unit makeDraggable( '.unit', - 'a.unit-drag-handle', - '.sortable-unit-list', - 'li.branch' + '.unit-drag-handle', + 'ol.sortable-unit-list', + 'li.branch, article.subsection-body' ); /* diff --git a/cms/templates/overview.html b/cms/templates/overview.html index 3772781cf9..ee445041f0 100644 --- a/cms/templates/overview.html +++ b/cms/templates/overview.html @@ -141,7 +141,7 @@ require(["domReady!", "jquery", "js/models/location", "js/models/section", "js/v
% for section in sections:
-
+
@@ -169,7 +169,6 @@ require(["domReady!", "jquery", "js/models/location", "js/models/section", "js/v
-
@@ -181,7 +180,7 @@ require(["domReady!", "jquery", "js/models/location", "js/models/section", "js/v
    % for subsection in section.get_children():