Difference between revisions of "MediaWiki:Common.js"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
$(function() { | $(function() { | ||
cDependent(); | cDependent(); | ||
− | |||
− | |||
− | |||
− | |||
listProjects(); | listProjects(); | ||
}); | }); | ||
Line 21: | Line 17: | ||
function listProjects(){ | function listProjects(){ | ||
− | |||
− | |||
var table = $('#listProjects').DataTable({ | var table = $('#listProjects').DataTable({ | ||
// dom: '<"top"lif>t<"bottom"p><"clear">', | // dom: '<"top"lif>t<"bottom"p><"clear">', | ||
searchPanes: { | searchPanes: { | ||
− | layout: 'columns- | + | layout: 'columns-1' |
}, | }, | ||
dom: 'Pfrtip', | dom: 'Pfrtip', | ||
Line 55: | Line 49: | ||
fixedHeader: true, | fixedHeader: true, | ||
initComplete: function () { | initComplete: function () { | ||
− | + | } | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | } | ||
}); | }); | ||
} | } |
Revision as of 22:44, September 13, 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": "Year" },
{ "title": "Studio" },
{ "title": "Agency" },
{ "title": "Functions, Assets and Awards" },
{ "title": "Audience" },
{ "title": "Media Partner" }
],
columnDefs: [{
searchPanes: {
show: true
},
targets: [0, 1, 2, 3]
}],
aoColumns: [],
lengthMenu: [
[10, 25, 50, -1], [10, 25, 50, "All"]
],
pageLength: 25,
orderCellsTop: true,
fixedHeader: true,
initComplete: function () {
}
});
}