(text, limit)
| 1802 | console.log("[populateSearchEngineDropdown] Finished populating engines."); |
| 1803 | } |
| 1804 | function truncateText(text, limit) { |
| 1805 | if (text && text.length > limit) { |
| 1806 | return text.substring(0, limit) + "..."; |
| 1807 | } |
| 1808 | return text || ""; |
| 1809 | } |
| 1810 | function resetSettingsTabView() { |
| 1811 | if (UI.listSettingsContainer) |
| 1812 | UI.listSettingsContainer.style.display = "none"; |
no outgoing calls
no test coverage detected