mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2026-07-28 14:47:19 -07:00
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
// Copyright 2013 - UDS/CNRS
|
|
// The Aladin Lite program is distributed under the terms
|
|
// of the GNU Lesser General Public License version 3
|
|
// or (at your option) any later version.
|
|
//
|
|
// This file is part of Aladin Lite.
|
|
//
|
|
// Aladin Lite is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Aladin Lite is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with Aladin Lite. If not, see <https://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
/******************************************************************************
|
|
* Aladin Lite project
|
|
*
|
|
* File Box
|
|
*
|
|
* A Box instance is a GUI element providing a div nested
|
|
* in Aladin Lite parent div
|
|
*
|
|
* Author: Thomas Boch [CDS]
|
|
*
|
|
*****************************************************************************/
|
|
|
|
class ShortcutHelper {
|
|
|
|
static shortcuts = new Map();
|
|
} |