aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/resetOffset.ts
blob: aaf8c48757f0a8a234eae422f4815bcde58c5ee0 (plain)
1
2
3
4
5
export function resetOffset(_event: Event) {
  (<HTMLInputElement>document.getElementById("pair_offset")).value = "0";
  (<HTMLInputElement>document.getElementById("pair_y_offset")).value = "0";
}
window.resetOffset = resetOffset;