- gitlist.git
- src
- browser
- js
- global.js
This file ( 2kB ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
require('./global/cookie')
require('./global/hash')
require('./global/scroll')
require('./global/path')
require('./global/ajax')
require('./global/git')
require('./global/input')
require('./global/snackbar')
require('./global/theme')
$(function () {
const Cookies = require('js-cookie')
currentTheme = window.gitlist.getActualTheme(window.gitlist.loadTheme)
$('.dropdown-toggle').dropdown();
$('[data-toggle="tooltip"]').tooltip()
window.gitlist.$body = $('body');
const es = document.getElementsByTagName('a')
for(let i=0; i<es.length; i++){
es[i].addEventListener('click', function(e) {
const href = e.target.getAttribute('href');
if (href === null) {
return;
}
if (href.startsWith('#')) {
e.preventDefault()
const hash = href.substring(1);
const el = document.getElementById(hash);
if (el === null) {
return;
}
window.gitlist.scrollIntoView(el);
window.gitlist.pushHash(href)
}
})
}
/*
$('.search').click(function (e) {
e.stopPropagation();
});
*/
if (window.gitlist.lastload !== undefined) {
window.gitlist.lastloadSpan = Date.now() - window.gitlist.lastload;
}
$('.p3x-gitlist-overlay').remove();
window.gitlist.scrollHash(location)
window.gitlist.networkRedraw();
window.gitlist.treegraph();
gitlist.setTheme()
const snack = new URL(window.location).searchParams.get('snack')
if (snack !== null) {
$.snackbar({
htmlAllowed: true,
content: '<i class="fas fa-info-circle"></i> ' + snack ,
timeout: window.gitlist.snapckbarLongTimeout,
})
}
const cookieShownChangelogName = 'p3x-gitlist-changelog-shown';
const cookieShownChangelog = Cookies.get(cookieShownChangelogName)
if (!cookieShownChangelog) {
Cookies.set(cookieShownChangelogName, true, window.gitlist.cookieSettings)
window.gitlist.changeLog()
}
});