This repository has been archived on 2022-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
gosm/index_files/thuhidden.js

15 lines
512 B
JavaScript

'use strict';
if (!String.prototype.endsWith) {
String.prototype.endsWith = function (ending) {
if (typeof ending !== 'string') return false;
if (!ending) return true;
return this.slice(-ending.length) === ending;
};
}
if (!document.location.hostname.endsWith('tsinghua.edu.cn') && !document.location.hostname.endsWith('tsinghua.edu.cn.')) {
document.title = document.title.replace(/(清华)|(tsinghua)|(tuna)/gi, '');
$().ready(function () {
$(document.body).addClass('nonthu');
});
}