()
| 1895 | } |
| 1896 | |
| 1897 | function placeRecycleBinNode() { |
| 1898 | const ul = document.getElementById('rootChildren'); |
| 1899 | if (!ul) return; |
| 1900 | |
| 1901 | const existing = document.getElementById(RECYCLE_BIN_ID); |
| 1902 | if (existing) existing.remove(); |
| 1903 | |
| 1904 | const isAdmin = localStorage.getItem('isAdmin') === '1' || localStorage.getItem('isAdmin') === 'true'; |
| 1905 | if (!isAdmin) return; |
| 1906 | |
| 1907 | if (isTrashDisabledForSource()) return; |
| 1908 | |
| 1909 | renderRecycleBinNode(window.recycleBinHasItems || false); |
| 1910 | } |
| 1911 | |
| 1912 | function getAppZoomFactor() { |
| 1913 | try { |
no test coverage detected