Difference between revisions of "MediaWiki:Common.js"

From Hollywood in Pixels Wiki
Jump to navigation Jump to search
Line 10: Line 10:
  
 
function cDependent(){
 
function cDependent(){
if($('.mw-references-wrap').length === 0){
+
if($('.mw-references-wrap').length > 0){
 
} else {
 
 
$('.cdependent').show();
 
$('.cdependent').show();
 
}
 
}

Revision as of 14:50, September 18, 2021

/* Any JavaScript here will be loaded for all users on every page load. */

        
$(function() {
	cDependent();
	if($('#listProjects').length > 0){
		listProjects();
	}
});

function cDependent(){
	if($('.mw-references-wrap').length > 0){
		$('.cdependent').show();
	}
}

function listProjects(){

    var table = $('#listProjects').DataTable({
    	// dom: '<"top"lif>t<"bottom"p><"clear">',
    	// dom: 'Pfrtip',
    	dom: 'fQrtip',
		responsive: true,
		colReorder: true,
    	order: [[ 0, 'asc' ]],
    	columns: [
        	{ "title": "Film" },
        	{ "title": "Released" },
        	{ "title": "Studio" },
			{ "title": "Agency" },
			{ "title": "Project" },
			{ "title": "Type" },
			{ "title": "Asset" },
			{ "title": "Awards" },
		],
        aoColumns: [],
        lengthMenu: [
                [10, 25, 50, -1], [10, 25, 50, "All"]
        ],
        pageLength: 25,
        orderCellsTop: true,
        fixedHeader: true,
        searchBuilder: {
        	greyscale: true
    	},
        initComplete: function () {
        }
    });
}