summaryrefslogtreecommitdiff
path: root/js_tests/admin
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2020-06-24 11:13:51 +0200
committerCarlton Gibson <carlton@noumenal.es>2020-06-24 11:54:48 +0200
commit30e59705fc3e3e9e8370b965af794ad6173bf92b (patch)
treef27b2e4c3b271ab38eeb3ef30c0cdc1515178c80 /js_tests/admin
parent074844e9479a9ee1420685b36189aa2881289993 (diff)
Fixed #31523 -- Removed jQuery dependency from actions.js.
Diffstat (limited to 'js_tests/admin')
-rw-r--r--js_tests/admin/actions.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js_tests/admin/actions.test.js b/js_tests/admin/actions.test.js
index b2eb3c25d8..0077dd6ff3 100644
--- a/js_tests/admin/actions.test.js
+++ b/js_tests/admin/actions.test.js
@@ -11,7 +11,7 @@ QUnit.module('admin.actions', {
const $ = django.jQuery;
$('#qunit-fixture').append($('#result-table').text());
- $('tr input.action-select').actions();
+ Actions(document.querySelectorAll('tr input.action-select'));
}
});