Site Notice
hello, world
Difference between revisions of "MediaWiki:Js-doc.js"
From Project-EPB Commons
Line 21: | Line 21: | ||
pageTitle = 'Documentations Center'; | pageTitle = 'Documentations Center'; | ||
} else if (pageTitle == '404') { | } else if (pageTitle == '404') { | ||
− | pageTitle = ' | + | pageTitle = 'Page not found - 404 ERROR' |
} | } | ||
− | $('title').html(pageTitle); | + | $('title').html(pageTitle + ' | Documentations Center | Wjghj Project'); |
}); | }); |
Revision as of 07:44, 5 September 2019
/**
*『Wjghj Project Static』
* This _JavaScript_ code is from https://common.wjghj.cn
* CC BY-NC-SA
**/
/* Invoke jQuery */
document.write('<script src="https://common.wjghj.cn/js/jquery"></script>');
/* Window load finished */
window.addEventListener("load", function(event) {
// Variables
var pageTile,
pageName,
backTo;
pageTitle = $('body').attr('data-title');
pageName = $('body').attr('data-pagename');
backTo = $('body').attr('data-backto');
if (pageTitle =='Mainpage' || pageTitle =='' || pageTitle == undefined) {
pageTitle = 'Documentations Center';
} else if (pageTitle == '404') {
pageTitle = 'Page not found - 404 ERROR'
}
$('title').html(pageTitle + ' | Documentations Center | Wjghj Project');
});