Fix autocomplete in HiPSSelector

This commit is contained in:
Thomas Boch
2022-05-24 09:38:11 +02:00
parent ff60b76cdd
commit 7c53bfa342
5 changed files with 4095 additions and 4 deletions

View File

@@ -118,5 +118,5 @@ cargo doc --no-deps --open
To generate the CSS
```bash
npx postcss src/css/aladin.css -o dist/aladin.css --watch
npx postcss src/css/aladin.css -o examples/aladin.css --watch
```

4091
examples/aladin.css Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -2,7 +2,7 @@
<html>
<head>
<link rel="stylesheet" href="https://aladin.u-strasbg.fr/AladinLite/api/v2/latest/aladin.min.css" />
<link rel="stylesheet" href="./aladin.css" />
</head>
<body>

View File

@@ -19,8 +19,7 @@
import { MocServer } from "../MocServer";
import { Utils } from "../Utils";
import { autocomplete } from 'autocompleter';
import autocomplete from 'autocompleter';
/******************************************************************************
* Aladin Lite project

View File

@@ -83,6 +83,7 @@ import { HiPSSelector } from "./HiPSSelector.js";
if (! self.hipsSelector) {
self.hipsSelector = new HiPSSelector(self.aladinDiv);
}
console.log('SHOW');
self.hipsSelector.show();
});