Tackling Featured Datasets

This commit is contained in:
Maxime Beauchemin
2016-02-24 16:48:15 -08:00
parent 71b11117d7
commit 8dcd5e0628
8 changed files with 71 additions and 60 deletions

View File

@@ -0,0 +1,14 @@
var $ = window.$ = require('jquery');
var jQuery = window.jQuery = $;
require('datatables');
require('datatables-bootstrap3-plugin');
require('bootstrap');
$(document).ready(function() {
$('#dataset-table').DataTable({
"bPaginate": false,
"order": [[ 1, "asc" ]]
});
$('#dataset-table_info').remove();
$('#dataset-table').show();
} );