Skip to content
Snippets Groups Projects
Commit c34fd548 authored by Matheus Agio Nerone's avatar Matheus Agio Nerone
Browse files

bug fix: dropdown-menu fontSize now persists page changes

parent 0e0926a7
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,7 @@ $(document).ready(function(){ ...@@ -21,6 +21,7 @@ $(document).ready(function(){
size_c = readCookie('fontSize'); size_c = readCookie('fontSize');
if (size_c != null) { if (size_c != null) {
document.body.style.fontSize = size_c + 'px'; document.body.style.fontSize = size_c + 'px';
$('.dropdown-menu').css('fontSize', document.body.style.fontSize);
} }
Contrast(); Contrast();
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment