Fix rotation selection on chrome, partial fix of #248
This commit is contained in:
parent
7d7b37b2a6
commit
095c5d1f1b
2 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@ import { Utils } from "../Utils";
|
||||||
|
|
||||||
export default class Constants {
|
export default class Constants {
|
||||||
|
|
||||||
public static vNumber = "0.6.8";
|
public static vNumber = "0.6.8a";
|
||||||
|
|
||||||
// The user journey states thresholds when a new feature gets unlocked
|
// The user journey states thresholds when a new feature gets unlocked
|
||||||
public static userJourney = {
|
public static userJourney = {
|
||||||
|
|
|
@ -23,7 +23,7 @@ export default class DirectionInput extends InputElement<string> {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const cone = selfElement.getElementsByClassName("direction-svg")[0] as HTMLElement
|
const cone = selfElement.getElementsByClassName("direction-svg")[0] as HTMLElement
|
||||||
cone.style.rotate = rotation + "deg";
|
cone.style.transform = `rotate(${rotation}deg)`;
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@ export default class DirectionInput extends InputElement<string> {
|
||||||
return new Combine([
|
return new Combine([
|
||||||
`<div id="direction-leaflet-div-${this.id}" style="width:100%;height: 100%;position: absolute;top:0;left:0;border-radius:100%;"></div>`,
|
`<div id="direction-leaflet-div-${this.id}" style="width:100%;height: 100%;position: absolute;top:0;left:0;border-radius:100%;"></div>`,
|
||||||
Svg.direction_svg().SetStyle(
|
Svg.direction_svg().SetStyle(
|
||||||
`position: absolute;top: 0;left: 0;width: 100%;height: 100%;rotate:${this.value.data}deg;`)
|
`position: absolute;top: 0;left: 0;width: 100%;height: 100%;transform:rotate(${this.value.data ?? 0}deg);`)
|
||||||
.SetClass("direction-svg"),
|
.SetClass("direction-svg"),
|
||||||
Svg.compass_svg().SetStyle(
|
Svg.compass_svg().SetStyle(
|
||||||
"position: absolute;top: 0;left: 0;width: 100%;height: 100%;")
|
"position: absolute;top: 0;left: 0;width: 100%;height: 100%;")
|
||||||
|
@ -74,7 +74,7 @@ export default class DirectionInput extends InputElement<string> {
|
||||||
|
|
||||||
htmlElement.onmousedown = (ev: MouseEvent) => {
|
htmlElement.onmousedown = (ev: MouseEvent) => {
|
||||||
isDown = true;
|
isDown = true;
|
||||||
onPosChange(ev.x, ev.y);
|
onPosChange(ev.clientX, ev.clientY);
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ export default class DirectionInput extends InputElement<string> {
|
||||||
|
|
||||||
htmlElement.onmousemove = (ev: MouseEvent) => {
|
htmlElement.onmousemove = (ev: MouseEvent) => {
|
||||||
if (isDown) {
|
if (isDown) {
|
||||||
onPosChange(ev.x, ev.y);
|
onPosChange(ev.clientX, ev.clientY);
|
||||||
} ev.preventDefault();
|
} ev.preventDefault();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue