Skip to content

Commit

Permalink
improved location of createBinding
Browse files Browse the repository at this point in the history
  • Loading branch information
TysonMN committed Feb 16, 2021
1 parent a72c809 commit 1e1d7a0
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions src/Elmish.WPF/Binding.fs
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,14 @@ and Binding<'model, 'msg> =
Data: BindingData<'model, 'msg> }


[<AutoOpen>]
module internal Helpers =

let createBinding data name =
{ Name = name
Data = data }


module internal BindingData =

let subModelSelectedItemLast a b =
Expand Down Expand Up @@ -889,16 +897,6 @@ module internal BindingData2 =




[<AutoOpen>]
module internal Helpers =

let createBinding data name =
{ Name = name
Data = data }



[<AbstractClass; Sealed>]
type Binding private () =

Expand Down

0 comments on commit 1e1d7a0

Please sign in to comment.