20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / assets / javascripts / request_shell_access.js
diff --git a/apps/workbench/app/assets/javascripts/request_shell_access.js b/apps/workbench/app/assets/javascripts/request_shell_access.js
deleted file mode 100644 (file)
index eb4fbc3..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// SPDX-License-Identifier: AGPL-3.0
-
-$(document).on('ready ajax:success storage', function() {
-    // Update the "shell access requested" info box according to the
-    // current state of localStorage.
-    var msg = localStorage.getItem('request_shell_access');
-    var $noShellAccessDiv = $('#no_shell_access');
-    if ($noShellAccessDiv.length > 0) {
-        $('.alert-success p', $noShellAccessDiv).text(msg);
-        $('.alert-success', $noShellAccessDiv).toggle(!!msg);
-    }
-});