MediaWiki:Common.js: Difference between revisions

MediaWiki interface page
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
/* 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. */
/* commenting out to test script below: importScript('MediaWiki:Angie.js'); */


/* Load the Ask Angie chat window */
/* ARCHIVED
mw.loader.using('jquery', function () {
mw.loader.using('jquery', function () {
     window.embeddedChatbotConfig = {
     window.embeddedChatbotConfig = {
Line 15: Line 16:
     document.head.appendChild(script);
     document.head.appendChild(script);
});
});
*/

Latest revision as of 11:26, 20 June 2024

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

/* Load the Ask Angie chat window */
/* ARCHIVED 
mw.loader.using('jquery', function () {
    window.embeddedChatbotConfig = {
        chatbotId: "L2SQs9eT7_akUR0EkEqFU",
        domain: "www.chatbase.co"
    };
    
    var script = document.createElement('script');
    script.src = "https://www.chatbase.co/embed.min.js";
    script.setAttribute("chatbotId", "L2SQs9eT7_akUR0EkEqFU");
    script.setAttribute("domain", "www.chatbase.co");
    script.defer = true;
    document.head.appendChild(script);
});
*/