mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
fixed scrollbar in left menu
This commit is contained in:
parent
b39d9528ab
commit
2294a54b36
2 changed files with 11 additions and 3 deletions
|
@ -2,11 +2,11 @@
|
||||||
- récriture doc -> TODO
|
- récriture doc -> TODO
|
||||||
- créer une section Showcase
|
- créer une section Showcase
|
||||||
- refaire la possibilité d'overrider le style/script/etc -> TODO
|
- refaire la possibilité d'overrider le style/script/etc -> TODO
|
||||||
- créer des thèmes de base -> TODO
|
- créer des jolis thèmes de base (avec des noms) -> TODO
|
||||||
- ajouter Travis pour tester le thème quotidiennement avec les nouvelles versions de Hugo -> TODO
|
|
||||||
- corriger slider menu qui ne fonctionne plus -> TODO
|
- corriger slider menu qui ne fonctionne plus -> TODO
|
||||||
- Update font awesome -> TODO
|
- ajouter Travis pour tester le thème quotidiennement avec les nouvelles versions de Hugo -> TODO
|
||||||
|
|
||||||
|
- Update font awesome -> OK
|
||||||
- internationalisation -> OK
|
- internationalisation -> OK
|
||||||
- Messages: OK
|
- Messages: OK
|
||||||
- Ajouter un bouton pour changer de langue : OK
|
- Ajouter un bouton pour changer de langue : OK
|
||||||
|
|
|
@ -25,6 +25,11 @@ function getScrollBarWidth() {
|
||||||
return (w1 - w2);
|
return (w1 - w2);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function setMenuHeight() {
|
||||||
|
$('#sidebar .highlightable').height($('#sidebar').innerHeight() - $('#header-wrapper').height() - 40);
|
||||||
|
$('#sidebar .highlightable').perfectScrollbar('update');
|
||||||
|
}
|
||||||
|
|
||||||
function fallbackMessage(action) {
|
function fallbackMessage(action) {
|
||||||
var actionMsg = '';
|
var actionMsg = '';
|
||||||
var actionKey = (action === 'cut' ? 'X' : 'C');
|
var actionKey = (action === 'cut' ? 'X' : 'C');
|
||||||
|
@ -44,6 +49,7 @@ function fallbackMessage(action) {
|
||||||
|
|
||||||
// for the window resize
|
// for the window resize
|
||||||
$(window).resize(function() {
|
$(window).resize(function() {
|
||||||
|
setMenuHeight();
|
||||||
});
|
});
|
||||||
|
|
||||||
// debouncing function from John Hann
|
// debouncing function from John Hann
|
||||||
|
@ -84,6 +90,8 @@ jQuery(document).ready(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
var sidebarStatus = searchStatus = 'open';
|
var sidebarStatus = searchStatus = 'open';
|
||||||
|
$('#sidebar .highlightable').perfectScrollbar();
|
||||||
|
setMenuHeight();
|
||||||
|
|
||||||
jQuery('#overlay').on('click', function() {
|
jQuery('#overlay').on('click', function() {
|
||||||
jQuery(document.body).toggleClass('sidebar-hidden');
|
jQuery(document.body).toggleClass('sidebar-hidden');
|
||||||
|
|
Loading…
Reference in a new issue