-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfullWidth.js
74 lines (63 loc) · 3.34 KB
/
fullWidth.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
function setupDocs() {
// add jquery
var jq = document.createElement('script');
jq.src = chrome.runtime.getURL('jquery.js');
(document.head || document.documentElement).appendChild(jq);
try {
expandTOC();
} catch (e) {
console.log("Error expanding TOC: ");
console.log(e);
}
try {
// add a script element for the button actions JS
var s = document.createElement('script');
s.src = chrome.runtime.getURL('buttonActions.js');
s.onload = function() {
this.remove();
};
(document.head || document.documentElement).appendChild(s);
// append a button to the sidebar
var sidebar = document.getElementById("affixed-left-container");
if (sidebar != null && typeof sidebar !== 'undefined') {
// prepend a button to the page metadata area
var pageMetadata = document.getElementsByClassName("page-metadata")[0];
if (typeof pageMetadata !== 'undefined') {
var sidebarButton = document.createElement("LI");
sidebarButton.innerHTML = "<button class='button link-button font-size-sm' id='docController' data-bi-name='sidebarController' onclick='sidebarButton()' currentSidebar='collapseSide'><span aria-hidden='true' class='docon docon-arrow-left'></span> Collapse Sidebar</button>"
pageMetadata.insertBefore(sidebarButton, pageMetadata.childNodes[0]);
}
var sidebarButton = document.createElement("DIV");
sidebarButton.setAttribute("class", "border-bottom flex-shrink-0");
sidebarButton.setAttribute("id", "sidebarButtonHolder");
sidebarButton.innerHTML = "<button class='button button-clear button-sm is-full-width display-block padding-left-none padding-right-none border-none is-text-left' id='docControllerSidebar' data-bi-name='sidebarController' onclick='sidebarAction(0)' currentSidebar='collapseSide'><span class='icon font-size-xs has-text-subtle'><span aria-hidden='true' class='docon docon-arrow-left'></span></span><span> Collapse Sidebar <span class='tag is-text is-small is-rounded margin-left-xxs'>Extension</span></span></button>"
$(window).on('load', function() {
sidebar.append(sidebarButton);
});
}
} catch (e) {
console.log("Error adding sidebar button: ");
console.log(e);
}
}
function expandTOC() {
// <nav id="side-doc-outline" data-bi-name="intopic toc" role="navigation" aria-label="Article Outline"><!---->
var tocNav = document.getElementById("side-doc-outline");
// find all class expandable children
var expandableChildren = tocNav.getElementsByClassName("expandable");
for (var i = 0; i < expandableChildren.length; i++) {
// add class is-expanded to all expandable children
expandableChildren[i].classList.add("is-expanded");
}
// find the child button
var expandButton = tocNav.getElementsByClassName("button");
for (var i = 0; i < expandButton.length; i++) {
// set aria-expanded to true and remove label
expandButton[i].setAttribute("aria-expanded", "true");
var buttonText = expandButton[i].getElementsByClassName("show-more-text");
for (var j = 0; j < buttonText.length; j++) {
buttonText[j].innerHTML = "";
}
}
}
setupDocs();