2020-10-04 01:04:46 +02:00
|
|
|
//*
|
2020-08-31 02:59:47 +02:00
|
|
|
|
2020-10-08 19:03:00 +02:00
|
|
|
import OpeningHoursVisualization from "./UI/OhVisualization";
|
|
|
|
import {UIEventSource} from "./Logic/UIEventSource";
|
|
|
|
|
2020-10-09 20:10:21 +02:00
|
|
|
new OpeningHoursVisualization( new UIEventSource<any>({
|
|
|
|
opening_hours: "2000 Dec 21 10:00-12:00;",
|
2020-10-08 19:03:00 +02:00
|
|
|
_country: "be",
|
|
|
|
_lat: "51.2",
|
|
|
|
_lon: "3.2"
|
|
|
|
}
|
2020-10-09 20:10:21 +02:00
|
|
|
), 'opening_hours').AttachTo("maindiv")
|
2020-10-02 19:00:24 +02:00
|
|
|
|
2020-10-04 01:04:46 +02:00
|
|
|
|
2020-10-06 01:37:02 +02:00
|
|
|
/*/
|
2020-10-02 19:00:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
import {Utils} from "./Utils";
|
|
|
|
import {FixedUiElement} from "./UI/Base/FixedUiElement";
|
|
|
|
|
|
|
|
Utils.generateStats((stats) => {
|
2020-10-06 01:37:02 +02:00
|
|
|
new FixedUiElement(stats).AttachTo('maindiv')
|
2020-10-02 19:00:24 +02:00
|
|
|
})
|
|
|
|
//*/
|