Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: motorcyclejs/dom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.3.0
Choose a base ref
...
head repository: motorcyclejs/dom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.4.0
Choose a head ref
  • 3 commits
  • 11 files changed
  • 1 contributor

Commits on Dec 20, 2016

  1. Configuration menu
    Copy the full SHA
    a3eeed4 View commit details
    Browse the repository at this point in the history
  2. feat(api-wrappers): implement functional api wrappers for DomSource

    `elements(domSource: DomSource): Stream<Element>`
    
    A functional implementation for `DomSource.elements()`.
    
    `events(eventType: string, domSource: DomSource): Stream<Event>`
    
    A functional implementation for `DomSource.events(eventType)`. This function is
    curried by default.
    
    `query(cssSelector: string, domSource: DomSource): DomSource`
    
    A functional implementation for `DomSource.select(cssSelector)`. This function is
    curried by default. The name of this function is `query` and not `select`
    because it is a name conflict with the hyperscript helper function for the
    `SELECT` HTML element.
    
    `useCapture(domSource: DomSource): DomSource`
    
    Combined with `events`, this allows for an equivalent of
    `DomSource.events(eventType, { useCapture: true })`.
    TylorS committed Dec 20, 2016
    Configuration menu
    Copy the full SHA
    9ad262b View commit details
    Browse the repository at this point in the history
  3. chore(package): v6.4.0

    TylorS committed Dec 20, 2016
    Configuration menu
    Copy the full SHA
    f4409fd View commit details
    Browse the repository at this point in the history
Loading