From e29e0fef7b6aa6f10e06895d2f8299d1ce1e3003 Mon Sep 17 00:00:00 2001 From: supahgreg Date: Thu, 16 Oct 2025 14:52:16 +0000 Subject: [PATCH] Add back 'App.find()' and 'App.findAll()' until official plugins can all be updated. --- js/App.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/js/App.js b/js/App.js index 5befe1fe8..76a731ecf 100644 --- a/js/App.js +++ b/js/App.js @@ -140,6 +140,14 @@ const App = { } } }, + /** @deprecated use document.querySelector */ + find: function(query) { + return document.querySelector(query) + }, + /** @deprecated use document.querySelectorAll */ + findAll: function(query) { + return document.querySelectorAll(query); + }, dialogOf: function (elem) { // elem could be a Dijit widget