|
|
Line 1: |
Line 1: |
| /* Any JavaScript here will be loaded for all users on every page load. */
| |
| /**
| |
| * @source https://www.mediawiki.org/wiki/Snippets/Load_JS_and_CSS_by_URL
| |
| * @revision 2016-03-26
| |
| */
| |
| mw.loader.using( ['mediawiki.util', 'mediawiki.notify'], function () {
| |
| var extraCSS = mw.util.getParamValue( 'withCSS' ),
| |
| extraJS = mw.util.getParamValue( 'withJS' );
| |
|
| |
| if ( extraCSS ) {
| |
| if ( /^MediaWiki:[^&<>=%#]*\.css$/.test( extraCSS ) ) {
| |
| mw.loader.load( '/w/index.php?title=' + extraCSS + '&action=raw&ctype=text/css', 'text/css' );
| |
| } else {
| |
| mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withCSS value' } );
| |
| }
| |
| }
| |
|
| |
| if ( extraJS ) {
| |
| if ( /^MediaWiki:[^&<>=%#]*\.js$/.test( extraJS ) ) {
| |
| mw.loader.load( '/w/index.php?title=' + extraJS + '&action=raw&ctype=text/javascript' );
| |
| } else {
| |
| mw.notify( 'Only pages from the MediaWiki namespace are allowed.', { title: 'Invalid withJS value' } );
| |
| }
| |
| }
| |
| });
| |
|
| |
|
| |
| /* Java script needed for the main page */
| |
| $(function () { | | $(function () { |
|
| |
|
| lifeCycleTopics = [
| | var myElement = document.getElementById('mw-mywiki-example'); |
| ['Image file', 'Impact Evaluation Design', 'A brief introduction to the regression models commonly used in Impact Evaluation. Links to in details resources.'],
| | myElement.innerHTML = '<p>hello world</p>'; |
| ['Image file','Sampling & Power Calculations','A brief introduction to the regression models commonly used in Impact Evaluation. Links to in details resources.'],
| |
| ['Image file','Human Subjects Approval','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Preparing for Data Collection','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Survey Firm Procurement','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Questionnaire Design','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Questionnaire Translation','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Questionnaire Programming','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','[[Survey Pilot]','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Enumerator Training','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Monitoring Data Quality','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Data Management','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Data Cleaning','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Data Analysis','This topic discuss all ethical concerns important for the '],
| |
| ['Image file','Reproducible Research','This topic discuss all ethical concerns important for the ']
| |
| ]
| |
| | |
| standAloneTopics = [
| |
| 'Stata Coding Practices','Stata Coding Practices','SurveyCTO Coding Practices','Geo Spatial Data','Check Lists for Field Coordinators','i2i Trust Fund for Impact Evaluation','Impact Evaluation Team','Cost-effectiveness Analysis'
| |
| ]
| |
| | |
| standAloneTopics.sort(function(a, b){return 0.5 - Math.random()});
| |
|
| |
| var lcElement = document.getElementById('dimewiki-mainpage-lc-js'); | |
| lcElement.innerHTML = dispTopics_lc(lifeCycleTopics ); | |
| | |
| var saElement = document.getElementById('dimewiki-mainpage-sa-js');
| |
| saElement.innerHTML = dispTopics_sa(standAloneTopics );
| |
|
| |
|
| }()); | | }()); |
|
| |
|
| |
| function dispTopics_lc(topicArray)
| |
| {
| |
| var topicTable = '<div class="table-div"><table style="width:100%">';
| |
| topicTable += '<col width=20%><col width=80%><tr>';
| |
| topicTable += '<td rowspan="2">'+ topicArray[0] +'</td>';
| |
| topicTable += '<td class="td_lc_titl">'+ topicArray[1] +'</td>';
| |
| topicTable += '</tr><tr>';
| |
| topicTable += '<td class="td_lc_desc">'+ topicArray[2] +'</td>';
| |
|
| |
| topicTable += '</tr></table></div>';
| |
|
| |
| return topicTable;
| |
| }
| |
|
| |
| function dispTopics_sa(topic)
| |
| {
| |
| var topicTable = '<div class="table-div"><table style="width:100%">';
| |
| topicTable += '<tr><td class="td_sa">'+ topic +'</td></tr>';
| |
| topicTable += '</table></div>';
| |
|
| |
| return topicTable;
| |
| }
| |