Wrap everything in IIFEs

This commit is contained in:
Shadowfacts 2016-09-09 17:56:46 -04:00
parent 553a0b05d3
commit d4e0d31a90
No known key found for this signature in database
GPG Key ID: F802198A7D7F309D
1 changed files with 55 additions and 49 deletions

View File

@ -5,8 +5,9 @@ let repoUrl = $("div.repohead-details-container > h1.public > strong[itemprop=na
// $("body").css("font-family", $("body").css("font-family").replace("BlinkMacSystemFont,", ""));
// releases tab
let repoNav = $("nav.reponav");
if (repoNav.length > 0) {
(function() {
let repoNav = $("nav.reponav");
if (repoNav.length > 0) {
let releasesUrl = repoUrl + "/releases";
let releasesTab = $("<a></a>");
releasesTab.attr("href", releasesUrl);
@ -38,10 +39,12 @@ if (repoNav.length > 0) {
$("nav.reponav > span:first > a").removeClass("selected");
releasesTab.addClass("selected");
}
}
}
})();
// add explore link to menu
if (!location.hostname.startsWith("gist")) {
(function() {
if (!location.hostname.startsWith("gist")) {
let lastItem = $(".header-nav[role=navigation] > .header-nav-item:last");
if (lastItem.find("a.header-nav-link").text() != "Explore") {
@ -54,10 +57,12 @@ if (!location.hostname.startsWith("gist")) {
exploreItem.append(exploreLink);
lastItem.before(exploreItem);
}
}
}
})();
// linkify branch references in PRs
$("span.commit-ref").each((i, el) => {
(function() {
$("span.commit-ref").each((i, el) => {
el = $(el);
let bits = el.attr("title").split(":");
let repo = bits[0];
@ -65,8 +70,9 @@ $("span.commit-ref").each((i, el) => {
let link = $("<a></a>");
link.attr("href", `https://github.com/${repo}/tree/${branch}`);
el.wrap(link);
});
$("body").after("<style>span.commit-ref:hover, span.commit-ref:hover span { text-decoration: underline; }</style>");
});
$("body").after("<style>span.commit-ref:hover, span.commit-ref:hover span { text-decoration: underline; }</style>");
})();
// linkify issue/pr references in issue titles
(function() {