Site Notice

hello, world

Difference between revisions of "MediaWiki:Js-doc.js"

From Project-EPB Commons
Line 24: Line 24:
 
   }
 
   }
  
   $('title').html(pageTitle + ' | Documentations Center | Wjghj Project');
+
   $('title').html(pageTitle + ' | 文档中心 | Wjghj Project');
  
 
});
 
});

Revision as of 07:45, 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 + ' | 文档中心 | Wjghj Project');

});