(animation = true)
| 1829 | /* Page - Settings */ |
| 1830 | |
| 1831 | function loadSettingsPage(animation = true) |
| 1832 | { |
| 1833 | indexPathControl(false); |
| 1834 | selectMenuItem('settings'); |
| 1835 | |
| 1836 | onReading = _onReading = false; |
| 1837 | |
| 1838 | reading.hideContent(); |
| 1839 | |
| 1840 | generateAppMenu(); |
| 1841 | |
| 1842 | settings.start(); |
| 1843 | |
| 1844 | template.loadContentRight('settings.content.right.html', animation); |
| 1845 | template.loadHeader('settings.header.html', animation); |
| 1846 | template.loadGlobalElement('general.elements.menus.html', 'menus'); |
| 1847 | floatingActionButton(false); |
| 1848 | |
| 1849 | settings.startSecond(); |
| 1850 | |
| 1851 | if(readingActive) |
| 1852 | readingActive = false; |
| 1853 | } |
| 1854 | |
| 1855 | /* Page - Theme */ |
| 1856 |
nothing calls this directly
no test coverage detected