From 27e2f6356699105e4a3383c86b7cf8000f20a83c Mon Sep 17 00:00:00 2001 From: Jim Laney Date: Tue, 12 Nov 2024 15:45:49 -0800 Subject: [PATCH] allow google lti in assignment selector --- includes/uw-global/assignments.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/includes/uw-global/assignments.js b/includes/uw-global/assignments.js index f8ffc80..f95e006 100644 --- a/includes/uw-global/assignments.js +++ b/includes/uw-global/assignments.js @@ -12,13 +12,4 @@ }); }); - // Hide external tool option - $(document).ajaxComplete(function (ev, xhr, data) { - var selector = 'a:contains("Google Assignments (LTI 1.3)")'; - if (data.url.match(/launch_definitions/)) { - $(selector).whenExists(function () { - $(selector).closest('li').hide(); - }); - } - }); }(jQuery));