mirror of
https://github.com/cds-astro/aladin-lite.git
synced 2025-12-12 15:49:18 -08:00
try to fix testing ci
This commit is contained in:
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
@@ -23,6 +23,7 @@ jobs:
|
||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
source "$HOME/.cargo/env"
|
||||
rustup default nightly
|
||||
rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
|
||||
- name: "Install wasm-pack"
|
||||
run: |
|
||||
curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -y
|
||||
|
||||
@@ -16,7 +16,6 @@
|
||||
showContextMenu: true,
|
||||
fullScreen: true,
|
||||
showSimbadPointerControl: true,
|
||||
showLayersControl: false,
|
||||
showSimbadPointerControl: false,
|
||||
showShareControl: true,
|
||||
showStatusBar: {
|
||||
|
||||
@@ -41,13 +41,14 @@ import { URLBuilder } from "./URLBuilder.js";
|
||||
import { ColorCfg } from './ColorCfg.js';
|
||||
import { Footprint } from './Footprint.js';
|
||||
import { Aladin } from "./Aladin.js";
|
||||
import { ActionButton } from "./gui/Widgets/ActionButton.js";
|
||||
import { Box } from "./gui/Widgets/Box.js";
|
||||
// Wasm top level import
|
||||
import init, * as module from './../core/pkg';
|
||||
|
||||
// Import aladin css inside the project
|
||||
import './../css/aladin.css';
|
||||
import { ActionButton } from "./gui/Widgets/ActionButton.js";
|
||||
import { Box } from "./gui/Widgets/Box.js";
|
||||
|
||||
|
||||
///////////////////////////////
|
||||
/////// Aladin Lite API ///////
|
||||
|
||||
@@ -78,7 +78,7 @@ import { Toolbar } from './gui/Widgets/Toolbar';
|
||||
* @property {string} [backgroundColor="rgb(60, 60, 60)"] - Background color in RGB format.
|
||||
*
|
||||
* @property {boolean} [showZoomControl=true] - Whether to show the zoom control toolbar.
|
||||
* @property {boolean} [showLayersControl=false] - Whether to show the layers control toolbar.
|
||||
* @property {boolean} [showLayersControl=true] - Whether to show the layers control toolbar.
|
||||
* @property {boolean} [showOverlayStackControl=true] - Whether to show the overlay stack control toolbar.
|
||||
* @property {boolean} [showSurveyStackControl=true] - Whether to show the survey stack control toolbar.
|
||||
* @property {boolean} [showFullscreenControl=true] - Whether to show the fullscreen control toolbar.
|
||||
@@ -545,7 +545,7 @@ export let Aladin = (function () {
|
||||
// Zoom toolbar
|
||||
showZoomControl: true,
|
||||
// Menu toolbar
|
||||
showLayersControl: false,
|
||||
showLayersControl: true,
|
||||
showFullscreenControl: true,
|
||||
//showGotoControl: false,
|
||||
showSimbadPointerControl: false,
|
||||
|
||||
@@ -22,7 +22,7 @@ import { Tooltip } from "./Widgets/Tooltip";
|
||||
/******************************************************************************
|
||||
* Aladin Lite project
|
||||
*
|
||||
* File gui/widgets/layout/Horizontal.js
|
||||
* File gui/Widgets/layout/Horizontal.js
|
||||
*
|
||||
* A layout grouping widgets horizontaly
|
||||
*
|
||||
|
||||
@@ -21,7 +21,7 @@ import { Utils } from "../../Utils";
|
||||
/******************************************************************************
|
||||
* Aladin Lite project
|
||||
*
|
||||
* File gui/widgets/layout/Horizontal.js
|
||||
* File gui/Widgets/layout/Horizontal.js
|
||||
*
|
||||
* A layout grouping widgets horizontaly
|
||||
*
|
||||
Reference in New Issue
Block a user