1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 var timestamp = new Date();
6 localStorage.setItem("request_shell_access",
7 "A request for shell access was sent on " +
8 timestamp.toLocaleDateString() +
10 timestamp.toLocaleTimeString());
11 // The storage event gets triggered automatically in _other_ windows
12 // when we hit localStorage, but we also need to fire it manually in
14 $(document).trigger('storage');