try to fix testing ci

This commit is contained in:
Matthieu Baumann
2024-03-05 11:23:57 +01:00
parent f8ee02a604
commit fae476166b
17 changed files with 8 additions and 7 deletions

View File

@@ -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

View File

@@ -16,7 +16,6 @@
showContextMenu: true,
fullScreen: true,
showSimbadPointerControl: true,
showLayersControl: false,
showSimbadPointerControl: false,
showShareControl: true,
showStatusBar: {

View File

@@ -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 ///////

View File

@@ -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,

View File

@@ -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
*

View File

@@ -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
*