summaryrefslogtreecommitdiff
path: root/js/PrefFeedTree.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-21 16:06:46 +0300
committerAndrew Dolgov <[email protected]>2021-02-21 16:06:46 +0300
commit2ab215daca1914102b35897300d681b3eb7f1274 (patch)
tree01e1ec279bb98683e0f1775cbbd23f32d0b22d90 /js/PrefFeedTree.js
parent521d0b65c73f90d6e86c1a38dcab492b5a23982b (diff)
batch editor: comment out getChildByName
Diffstat (limited to 'js/PrefFeedTree.js')
-rw-r--r--js/PrefFeedTree.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/PrefFeedTree.js b/js/PrefFeedTree.js
index 468e2025c..bb5d25e67 100644
--- a/js/PrefFeedTree.js
+++ b/js/PrefFeedTree.js
@@ -301,7 +301,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree", "dojo/_b
try {
const dialog = new fox.SingleUseDialog({
title: __("Edit Multiple Feeds"),
- getChildByName: function (name) {
+ /*getChildByName: function (name) {
let rv = null;
this.getChildren().forEach(
function (child) {
@@ -311,7 +311,7 @@ define(["dojo/_base/declare", "dojo/dom-construct", "lib/CheckBoxTree", "dojo/_b
}
});
return rv;
- },
+ },*/
toggleField: function (checkbox) {
const name = checkbox.attr("data-control-for");
const target = dijit.getEnclosingWidget(dialog.domNode.querySelector(`input[name="${name}"]`));