Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Line 28: | Line 28: | ||
columns: [ | columns: [ | ||
{ "title": "Film" }, | { "title": "Film" }, | ||
− | { "title": " | + | { "title": "Released" }, |
{ "title": "Studio" }, | { "title": "Studio" }, | ||
{ "title": "Agency" }, | { "title": "Agency" }, | ||
Line 34: | Line 34: | ||
{ "title": "Asset" }, | { "title": "Asset" }, | ||
{ "title": "Award" }, | { "title": "Award" }, | ||
+ | { "title": "Year" }, | ||
{ "title": "Award category" }, | { "title": "Award category" }, | ||
{ "title": "Outcome" }, | { "title": "Outcome" }, |
Revision as of 00:07, September 14, 2021
/* Any JavaScript here will be loaded for all users on every page load. */
$(function() {
cDependent();
listProjects();
});
function cDependent(){
if($('.mw-references-wrap').length === 0){
} else {
$('.cdependent').show();
}
}
function listProjects(){
var table = $('#listProjects').DataTable({
// dom: '<"top"lif>t<"bottom"p><"clear">',
searchPanes: {
layout: 'columns-1'
},
dom: 'Pfrtip',
responsive: true,
colReorder: true,
order: [[ 0, 'asc' ]],
columns: [
{ "title": "Film" },
{ "title": "Released" },
{ "title": "Studio" },
{ "title": "Agency" },
{ "title": "Functions" },
{ "title": "Asset" },
{ "title": "Award" },
{ "title": "Year" },
{ "title": "Award category" },
{ "title": "Outcome" },
],
columnDefs: [{
searchPanes: {
show: true
},
targets: [0, 1, 2, 3, 4, 5]
}],
aoColumns: [],
lengthMenu: [
[10, 25, 50, -1], [10, 25, 50, "All"]
],
pageLength: 25,
orderCellsTop: true,
fixedHeader: true,
initComplete: function () {
}
});
}