From f85559735b794682057e5b8d3854373f4d10dbb9 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Tue, 14 Oct 2025 23:22:00 +0000 Subject: Remove 'App.byId()', which was essentially an alias of 'document.getElementById()'. --- plugins/shorten_expanded/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/shorten_expanded/init.js') diff --git a/plugins/shorten_expanded/init.js b/plugins/shorten_expanded/init.js index deb3b6393..b541b750e 100644 --- a/plugins/shorten_expanded/init.js +++ b/plugins/shorten_expanded/init.js @@ -52,7 +52,7 @@ Plugins.Shorten_Expanded = { this.observer.observe(row); }, expand: function(id) { - const row = App.byId(id); + const row = document.getElementById(id); if (row) { const link = row.querySelector('.expand-prompt'); -- cgit v1.2.3-54-g00ecf