forked from basho/basho_docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
76 lines (57 loc) · 2.38 KB
/
main.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
75
76
/* Primary JS
* ==========
* The primary set of JavaScipt that should be included _after_ the majority of
* the DOM has been loaded (e.g. in a <script> tag at the bottom of the <body>).
* This will include all libraries and custom code required to finish pre-
* interaction DOM manipulation, and all code that drives dynamic interactions.
* This file will (probably) include JS language modifications (think
* `Object.new` before it was added to the standard), and Sprockets `require`
* statements. Hopefully nothing else.
*/
//TODO: Make sure none of the code in here triggers a FOUC.
/* Vendor Library Includes
* -----------------------
* Included one at a time to ensure all requirements are met
*/
//= require ./vendor/modernizr-3.1.1.js
//= require ./vendor/jquery-2.2.4.js
//= require ./vendor/highlight-9.7.0.pack.js
/* Basho Code Tools & Library Code
* -------------------------------
* Included one at a time to ensure all requirements are met
*/
//= require ./basho/tools/language-extensions.coffee
//= require ./basho/tools/sem-ver.js
/* Basho Code
* ----------
* Included one at a time to ensure all requirements are met
*/
//= require ./basho/anchorify-headings.js
//= require ./basho/table-of-contents.js
//= require ./basho/content-navigation.js
//= require ./basho/selectors.js
//= require ./basho/edge-fader.js
//= require ./basho/code-blocks.js
//= require ./basho/bitcask-calculator.js
/* Vendor Library Configuration and Initialization
* -----------------------------------------------
* Some vendor code requires some configuration and execution. This seems as
* good a place as any to perform those configurations and execute.
*/
/** Attempted table-wrapping mitigation
* -----------------------------------
* These two calls add non-rendered word-break opportunities after `.`s and
* before `/` (that aren't the first characters on a line.) to all <code> text
* that lives under <td> tags. The idea is to give tables full of paths and code
* segments a chance to wrap s.t. they don't massively over-extend beyond the
* edges of smaller screen widths.
* TODO: THIS IS NOT A FULL SOLUTION, but it might help during the first push.
*/
$('td code').each(
function() {
$(this).html($(this).html().replace(/([^^])\./g, '$1.<wbr>'))
});
$('td code').each(
function() {
$(this).html($(this).html().replace(/([^^])\//g, '$1<wbr>/'))
});