[LNT] r282745 - Use Datatables instead of sortable.js to render these tables
Chris Matthews via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 29 11:16:28 PDT 2016
Author: cmatthews
Date: Thu Sep 29 13:16:28 2016
New Revision: 282745
URL: http://llvm.org/viewvc/llvm-project?rev=282745&view=rev
Log:
Use Datatables instead of sortable.js to render these tables
I hope we can get rid of sortable.js someday. This is a start.
Modified:
lnt/trunk/lnt/server/ui/templates/v4_run.html
Modified: lnt/trunk/lnt/server/ui/templates/v4_run.html
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/server/ui/templates/v4_run.html?rev=282745&r1=282744&r2=282745&view=diff
==============================================================================
--- lnt/trunk/lnt/server/ui/templates/v4_run.html (original)
+++ lnt/trunk/lnt/server/ui/templates/v4_run.html Thu Sep 29 13:16:28 2016
@@ -323,7 +323,7 @@ $('.profile-prev-only').tooltip();
{% for field in metric_fields %}
<section id="{{ field.name }}">
{{ utils.render_popup_begin('test_data-' + field.name, field.name, false) }}
- <table class="table table-striped table-hover table-condensed sortable floating_header">
+ <table class="table table-striped table-hover table-condensed floating_header datatable">
<thead>
<tr>
<th rowspan="1" class="sorttable_nosort"><input type="checkbox" id="select-all-{{ field.name }}" onClick="selectAll(this)"></th>
More information about the llvm-commits
mailing list