mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-23 17:01:22 +02:00
Add back 'App.find()' and 'App.findAll()' until official plugins can all be updated.
This commit is contained in:
parent
64d5230c38
commit
e29e0fef7b
@ -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) {
|
dialogOf: function (elem) {
|
||||||
|
|
||||||
// elem could be a Dijit widget
|
// elem could be a Dijit widget
|
||||||
|
Loading…
x
Reference in New Issue
Block a user