From 993add1042d039f26afe99e2008a7c29afcb300d Mon Sep 17 00:00:00 2001 From: william-bratches Date: Fri, 21 Mar 2014 20:36:21 -0400 Subject: [PATCH] fix to issue 136 --- karmaworld/templates/courses/course_list.html | 44 ++++++++----------- 1 file changed, 19 insertions(+), 25 deletions(-) diff --git a/karmaworld/templates/courses/course_list.html b/karmaworld/templates/courses/course_list.html index a874f63..08b4297 100644 --- a/karmaworld/templates/courses/course_list.html +++ b/karmaworld/templates/courses/course_list.html @@ -43,24 +43,21 @@ $(document).ready(function() { "aoColumnDefs": [ { // 4th element: thanks - "aTargets": [ 6 ], + "aTargets": [ 3 ], "bSortable": true, - "bVisible": true, - "aDataSort": [ 3 ] + "bVisible": true }, { // 3rd element: notes - "aTargets": [ 5 ], + "aTargets": [ 2 ], "bSortable": true, - "bVisible": true, - "aDataSort": [ 2 ] + "bVisible": true }, { // 2nd element: date - "aTargets": [ 4 ], + "aTargets": [ 1 ], "bSortable": true, - "bVisible": true, - "aDataSort": [ 1 ] + "bVisible": true }, { // 1st element: "sort by" label @@ -70,24 +67,24 @@ $(document).ready(function() { } ], // Initial sorting - 'aaSorting': [[6,'desc']] - }); + 'aaSorting': [[3,'desc']] + }) $('.dataTables_filter input').attr("placeholder", "search courses"); // TODO: can't prepend html to .dataTables_filter input html for fontawesome search icon }); - //scrolling scripts - scrolls to top of page after scrolling between pages - $(function(){ - $('#paginate_enabled_next').click(function() { - $("#data-table-sort-by").ScrollTo();; - }); - - $(function(){ - $('paginate_enabled_previous').click(function() { - $("#data-table-sort-by").ScrollTo();; +//button +$(function(){ + $('#paginate_enabled_next').click(function() { + $("#data-table-sort-by").ScrollTo();; }); +}); - +$(function(){ + $('#paginate_enabled_previous').click(function() { + $("#data-table-sort-by").ScrollTo();; + }); +}); {% endblock %} @@ -111,11 +108,8 @@ $(document).ready(function() { Sort by: - Date - # Notes - Popularity Date - # Notes + #Notes Popularity Upload Course Name -- 2.25.1