Skip to content

Commit 34aa7c4

Browse files
committed
Fixed comment formatting.
1 parent 5283d61 commit 34aa7c4

File tree

2 files changed

+215
-215
lines changed

2 files changed

+215
-215
lines changed

src/main/scala/org/scalajs/dom/raw/Html.scala

Lines changed: 96 additions & 96 deletions
Original file line numberDiff line numberDiff line change
@@ -548,81 +548,81 @@ abstract class HTMLDocument extends Document {
548548
var onstoragecommit: js.Function1[StorageEvent, _] = js.native
549549

550550
/**
551-
* fired when a pointing device is moved into an element's hit test boundaries.
552-
*
553-
* MDN
554-
*/
551+
* fired when a pointing device is moved into an element's hit test boundaries.
552+
*
553+
* MDN
554+
*/
555555
var onpointerover: js.Function1[PointerEvent, _] = js.native
556556

557557
/**
558-
* fired when a pointing device is moved into the hit test boundaries of an element
559-
* or one of its descendants, including as a result of a pointerdown event
560-
* from a device that does not support hover (see pointerdown).
561-
*
562-
* MDN
563-
*/
558+
* fired when a pointing device is moved into the hit test boundaries of an element
559+
* or one of its descendants, including as a result of a pointerdown event
560+
* from a device that does not support hover (see pointerdown).
561+
*
562+
* MDN
563+
*/
564564
var onpointerenter: js.Function1[PointerEvent, _] = js.native
565565

566566
/**
567-
* fired when a pointer becomes active.
568-
*
569-
* MDN
570-
*/
567+
* fired when a pointer becomes active.
568+
*
569+
* MDN
570+
*/
571571
var onpointerdown: js.Function1[PointerEvent, _] = js.native
572572

573573
/**
574-
* fired when a pointer changes coordinates.
575-
*
576-
* MDN
577-
*/
574+
* fired when a pointer changes coordinates.
575+
*
576+
* MDN
577+
*/
578578
var onpointermove: js.Function1[PointerEvent, _] = js.native
579579

580580
/**
581-
* fired when a pointer is no longer active.
582-
*
583-
* MDN
584-
*/
581+
* fired when a pointer is no longer active.
582+
*
583+
* MDN
584+
*/
585585
var onpointerup: js.Function1[PointerEvent, _] = js.native
586586

587587
/**
588-
* a browser fires this event if it concludes the pointer will no longer be able
589-
* to generate events (for example the related device is deactived).
590-
*
591-
* MDN
592-
*/
588+
* a browser fires this event if it concludes the pointer will no longer be able
589+
* to generate events (for example the related device is deactived).
590+
*
591+
* MDN
592+
*/
593593
var onpointercancel: js.Function1[PointerEvent, _] = js.native
594594

595595
/**
596-
* fired for several reasons including: pointing device is moved out of
597-
* the hit test boundaries of an element;
598-
* firing the pointerup event for a device that does not support hover (see pointerup);
599-
* after firing the pointercancel event (see pointercancel);
600-
* when a pen stylus leaves the hover range detectable by the digitizer.
601-
*
602-
* MDN
603-
*/
596+
* fired for several reasons including: pointing device is moved out of
597+
* the hit test boundaries of an element;
598+
* firing the pointerup event for a device that does not support hover (see pointerup);
599+
* after firing the pointercancel event (see pointercancel);
600+
* when a pen stylus leaves the hover range detectable by the digitizer.
601+
*
602+
* MDN
603+
*/
604604
var onpointerout: js.Function1[PointerEvent, _] = js.native
605605

606606
/**
607-
* fired when a pointing device is moved out of the hit test boundaries of an element.
608-
* For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.
609-
*
610-
* MDN
611-
*/
607+
* fired when a pointing device is moved out of the hit test boundaries of an element.
608+
* For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.
609+
*
610+
* MDN
611+
*/
612612
var onpointerleave: js.Function1[PointerEvent, _] = js.native
613613

614614
/**
615-
* fired when an element receives pointer capture.
616-
*
617-
* MDN
618-
*/
615+
* fired when an element receives pointer capture.
616+
*
617+
* MDN
618+
*/
619619
var gotpointercapture: js.Function1[PointerEvent, _] = js.native
620620

621621
/**
622-
* Fired after pointer capture is released for a pointer.
623-
*
624-
* MDN
625-
*/
622+
* Fired after pointer capture is released for a pointer.
623+
*
624+
* MDN
625+
*/
626626
var lostpointercapture: js.Function1[PointerEvent, _] = js.native
627627
}
628628

@@ -4197,81 +4197,81 @@ abstract class HTMLElement extends Element {
41974197
override def ownerDocument: HTMLDocument = js.native
41984198

41994199
/**
4200-
* fired when a pointing device is moved into an element's hit test boundaries.
4201-
*
4202-
* MDN
4203-
*/
4200+
* fired when a pointing device is moved into an element's hit test boundaries.
4201+
*
4202+
* MDN
4203+
*/
42044204
var onpointerover: js.Function1[PointerEvent, _] = js.native
42054205

42064206
/**
4207-
* fired when a pointing device is moved into the hit test boundaries of an element
4208-
* or one of its descendants, including as a result of a pointerdown event
4209-
* from a device that does not support hover (see pointerdown).
4210-
*
4211-
* MDN
4212-
*/
4207+
* fired when a pointing device is moved into the hit test boundaries of an element
4208+
* or one of its descendants, including as a result of a pointerdown event
4209+
* from a device that does not support hover (see pointerdown).
4210+
*
4211+
* MDN
4212+
*/
42134213
var onpointerenter: js.Function1[PointerEvent, _] = js.native
42144214

42154215
/**
4216-
* fired when a pointer becomes active.
4217-
*
4218-
* MDN
4219-
*/
4216+
* fired when a pointer becomes active.
4217+
*
4218+
* MDN
4219+
*/
42204220
var onpointerdown: js.Function1[PointerEvent, _] = js.native
42214221

42224222
/**
4223-
* fired when a pointer changes coordinates.
4224-
*
4225-
* MDN
4226-
*/
4223+
* fired when a pointer changes coordinates.
4224+
*
4225+
* MDN
4226+
*/
42274227
var onpointermove: js.Function1[PointerEvent, _] = js.native
42284228

42294229
/**
4230-
* fired when a pointer is no longer active.
4231-
*
4232-
* MDN
4233-
*/
4230+
* fired when a pointer is no longer active.
4231+
*
4232+
* MDN
4233+
*/
42344234
var onpointerup: js.Function1[PointerEvent, _] = js.native
42354235

42364236
/**
4237-
* a browser fires this event if it concludes the pointer will no longer be able
4238-
* to generate events (for example the related device is deactived).
4239-
*
4240-
* MDN
4241-
*/
4237+
* a browser fires this event if it concludes the pointer will no longer be able
4238+
* to generate events (for example the related device is deactived).
4239+
*
4240+
* MDN
4241+
*/
42424242
var onpointercancel: js.Function1[PointerEvent, _] = js.native
42434243

42444244
/**
4245-
* fired for several reasons including: pointing device is moved out of
4246-
* the hit test boundaries of an element;
4247-
* firing the pointerup event for a device that does not support hover (see pointerup);
4248-
* after firing the pointercancel event (see pointercancel);
4249-
* when a pen stylus leaves the hover range detectable by the digitizer.
4250-
*
4251-
* MDN
4252-
*/
4245+
* fired for several reasons including: pointing device is moved out of
4246+
* the hit test boundaries of an element;
4247+
* firing the pointerup event for a device that does not support hover (see pointerup);
4248+
* after firing the pointercancel event (see pointercancel);
4249+
* when a pen stylus leaves the hover range detectable by the digitizer.
4250+
*
4251+
* MDN
4252+
*/
42534253
var onpointerout: js.Function1[PointerEvent, _] = js.native
42544254

42554255
/**
4256-
* fired when a pointing device is moved out of the hit test boundaries of an element.
4257-
* For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.
4258-
*
4259-
* MDN
4260-
*/
4256+
* fired when a pointing device is moved out of the hit test boundaries of an element.
4257+
* For pen devices, this event is fired when the stylus leaves the hover range detectable by the digitizer.
4258+
*
4259+
* MDN
4260+
*/
42614261
var onpointerleave: js.Function1[PointerEvent, _] = js.native
42624262

42634263
/**
4264-
* fired when an element receives pointer capture.
4265-
*
4266-
* MDN
4267-
*/
4264+
* fired when an element receives pointer capture.
4265+
*
4266+
* MDN
4267+
*/
42684268
var gotpointercapture: js.Function1[PointerEvent, _] = js.native
42694269

42704270
/**
4271-
* Fired after pointer capture is released for a pointer.
4272-
*
4273-
* MDN
4274-
*/
4271+
* Fired after pointer capture is released for a pointer.
4272+
*
4273+
* MDN
4274+
*/
42754275
var lostpointercapture: js.Function1[PointerEvent, _] = js.native
42764276
}
42774277

0 commit comments

Comments
 (0)