MediaWiki:Common.js: Difference between revisions

From Hollywood in Pixels Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:
     order: [[ 0, 'asc' ]],
     order: [[ 0, 'asc' ]],
     columns: [
     columns: [
         { "title": "Name" },
         { "title": "1" },
        { "title": "2" },
        { "title": "3" },
{ "title": "4" },
{ "title": "5" },
{ "title": "6" }
],
],
         aoColumns: [],
         aoColumns: [],

Revision as of 14:31, 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(){
	checknode = $('table#listProjects');
	
    $(checknode).DataTable({
        dom: '<"top"if>p<"bottom"><"clear">',
		responsive: true,
    	order: [[ 0, 'asc' ]],
    	columns: [
        	{ "title": "1" },
        	{ "title": "2" },
        	{ "title": "3" },
			{ "title": "4" },
			{ "title": "5" },
			{ "title": "6" }
		],
        aoColumns: [],
        lengthMenu: [
                [10, 25, 50, -1], [10, 25, 50, "All"]
        ],
        pageLength: 25,
        fnInitComplete: function() {
        }
    });
}