Skip to content

Commit

Permalink
try to fix testing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatthieu3 committed Mar 5, 2024
1 parent f8ee02a commit a98f373
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion examples/al-easy-access-simbad-ned.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
showContextMenu: true,
fullScreen: true,
showSimbadPointerControl: true,
showLayersControl: false,
showSimbadPointerControl: false,
showShareControl: true,
showStatusBar: {
Expand Down
5 changes: 3 additions & 2 deletions src/js/A.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 ///////
Expand Down
4 changes: 2 additions & 2 deletions src/js/Aladin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -545,7 +545,7 @@ export let Aladin = (function () {
// Zoom toolbar
showZoomControl: true,
// Menu toolbar
showLayersControl: false,
showLayersControl: true,
showFullscreenControl: true,
//showGotoControl: false,
showSimbadPointerControl: false,
Expand Down

0 comments on commit a98f373

Please sign in to comment.