Skip to content

Commit

Permalink
Merging eliom_content interface with name change of replaceAllChildren
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Balat committed May 8, 2014
1 parent f76931b commit 96b7132
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/clientserver/eliom_content.client.mli
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,15 @@ module Svg : sig
list of [e1] children. *)
val replaceChild: 'a elt -> 'b elt -> 'c elt -> unit

(** The function [removeAllChildren e1] removes [e1] children. *)
val removeAllChildren: 'a elt -> unit
(** The function [removeChildren e1] removes [e1] children. *)
val removeChildren: 'a elt -> unit

(** [removeSelf e] removes element e from the DOM. *)
val removeSelf: 'a elt -> unit

(** The function [replaceAllChildren e1 elts] replaces all the children of
(** The function [replaceChildren e1 elts] replaces all the children of
[e1] by [elt]. *)
val replaceAllChildren: 'a elt -> 'b elt list -> unit
val replaceChildren: 'a elt -> 'b elt list -> unit

(* (\** The function [addEventListener elt evt handler] attach the *)
(* [handler] for the event [evt] on the element [elt]. See the *)
Expand Down Expand Up @@ -176,10 +176,10 @@ module Svg : sig
val removeChild: 'a Id.id -> 'b elt -> unit
(** see [replaceChild] *)
val replaceChild: 'a Id.id -> 'b elt -> 'c elt -> unit
(** see [removeAllChildren] *)
val removeAllChildren: 'a Id.id -> unit
(** see [replaceAllChildren] *)
val replaceAllChildren: 'a Id.id -> 'b elt list -> unit
(** see [removeChildren] *)
val removeChildren: 'a Id.id -> unit
(** see [replaceChildren] *)
val replaceChildren: 'a Id.id -> 'b elt list -> unit

(* (\** see [addEventListener] *\) *)
(* val addEventListener: *)
Expand Down Expand Up @@ -531,15 +531,15 @@ module Html5 : sig
list of [e1] children. *)
val replaceChild: 'a elt -> 'b elt -> 'c elt -> unit

(** The function [removeAllChildren e1] removes [e1] children. *)
val removeAllChildren: 'a elt -> unit
(** The function [removeChildren e1] removes [e1] children. *)
val removeChildren: 'a elt -> unit

(** [removeSelf e] removes element e from the DOM. *)
val removeSelf: 'a elt -> unit

(** The function [replaceAllChildren e1 elts] replaces all the children of
(** The function [replaceChildren e1 elts] replaces all the children of
[e1] by [elt]. *)
val replaceAllChildren: 'a elt -> 'b elt list -> unit
val replaceChildren: 'a elt -> 'b elt list -> unit

(** The function [addEventListener elt evt handler] attach the
[handler] for the event [evt] on the element [elt]. See the
Expand Down Expand Up @@ -570,10 +570,10 @@ module Html5 : sig
val removeChild: 'a Id.id -> 'b elt -> unit
(** see [replaceChild] *)
val replaceChild: 'a Id.id -> 'b elt -> 'c elt -> unit
(** see [removeAllChildren] *)
val removeAllChildren: 'a Id.id -> unit
(** see [replaceAllChildren] *)
val replaceAllChildren: 'a Id.id -> 'b elt list -> unit
(** see [removeChildren] *)
val removeChildren: 'a Id.id -> unit
(** see [replaceChildren] *)
val replaceChildren: 'a Id.id -> 'b elt list -> unit

(** see [addEventListener] *)
val addEventListener:
Expand Down

0 comments on commit 96b7132

Please sign in to comment.