MediaWiki:Common.js: Difference between revisions

From GNU Radio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
console.log ("Version-adaptive documentation");


/* phase2.js */
/* phase2.js */
var gr_version = "";


document.body.onload = function() {phase2()};
document.body.onload = function() {phase2()};
Line 11: Line 11:
function phase2()
function phase2()
     {
     {
     console.log ("Version-adaptive documentation");
     console.log ("phase2()");
     }
     }

Revision as of 22:40, 8 December 2022

"use strict"

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

console.log ("Version-adaptive documentation");

/* phase2.js */

document.body.onload = function() {phase2()};

function phase2()
    {
    console.log ("phase2()");
    }