Commit Graph

74 Commits (17a2829d7c8bedaf5513770fe39555ea07003cb7)

Author SHA1 Message Date
Aiden Bai 771ebd8031
Merge
Aiden Bai e646cdb0be
Use explicit regex for trailing slash trim
Aiden Bai 3c660dd9b5
Remove unnecessary 'url' param in drawGraph
Aiden Bai 4cca3c1f2d
Peg router version
Aiden Bai 9d3bbd6076
Fix active node on graph
Aiden Bai 77485b754d
Fix popover
Jacky Zhao 6e6dd4cb0b fix: trim trailing slash when calculating popover
Jacky Zhao 24d08d580d cfg: make SPA optional
Jacky Zhao fc89ff2680 fix: broken semi and graph min-height
Jacky Zhao e9a33c04b5 fmt: remove semis for good
Jacky Zhao 9ba0a4b34f fmt: remove semis :)
Aiden Bai 5c602ab16f
Add clarification comments
Aiden Bai bcb166c21c
Add router
Jacky Zhao 87b5a7a251 feat: show graph titles on zoom (fixes )
Jacky Zhao 3c7ece5405 fix: append trailing slash, fixes
Jacky Zhao f9c7cdf928 fix: check for src before attempting to add popover
Jacky Zhao e6e04c03c4 fix latex misrendering
Jacky Zhao c117e38899 feat: wikilinks implementation
Jacky Zhao 4fd983277e fix: cjk support + demo page
Jacky Zhao 1ddd15afc6 fix: non-unicode character in popover and search ,
Jacky Zhao 94e987dab5 feat: better titles for empty pages
Claudio Yanes 978d5ca1ae Format JS
Claudio Yanes 7e0f2e4449 Fix fetchData
The fetchData function suffer from a race condition. If the function is
called before the promise finishes, it will result in another pair of
HTTP request. This does not only make the function useless but
Actually, it makes it harmful as the data might be redownloaded twice.

Now fetchData is not a function but rather the promise by itself.
Previous callers are expected to await the variable instead, this
should be not concern as awaiting a promise multiple time in
JavaScript is completely safe.
Claudio Yanes 1313bd9779 Move css and js to appropriate files
Having the CSS and JS in the html template produces pages larger
than necessary, as each page need to contain all the js/css.
Separating them in appropriate files allow the browser to just download
them once and use them for all the pages. This is even more effective
with an aggressive cache policy for the js and css, something that can
be done without fear thanks to the implemented cache-busting.
Also, having then in separate files allows us to use Hugo pipelines
for minimizing the code.