You've already forked ReZygisk
mirror of
https://github.com/PerformanC/ReZygisk.git
synced 2025-09-06 06:37:01 +00:00
dde0436fd9
This commit fixes the syntax and indentation of the JavaScript code to meet the organization standard.
15 lines
737 B
JavaScript
15 lines
737 B
JavaScript
import { light_action_icon, light_home_icon, light_module_icon, light_settings_icon } from './lightIcon.js'
|
|
|
|
export function setLightNav() {
|
|
document.getElementById('nid_home').innerHTML = light_home_icon()
|
|
document.getElementById('ni_home').innerHTML = light_home_icon(true)
|
|
|
|
document.getElementById('nid_modules').innerHTML = light_module_icon()
|
|
document.getElementById('ni_modules').innerHTML = light_module_icon(true)
|
|
|
|
document.getElementById('nid_actions').innerHTML = light_action_icon()
|
|
document.getElementById('ni_actions').innerHTML = light_action_icon(true)
|
|
|
|
document.getElementById('nid_settings').innerHTML = light_settings_icon()
|
|
document.getElementById('ni_settings').innerHTML = light_settings_icon(true)
|
|
} |