Skip to content

Release 9.10.1-beta.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@thet thet released this 31 Jan 00:31
· 9 commits to master since this release

9.10.1-beta.0 (2025-01-31)

Features

  • core dom: Add method is_button. (132e42b)

    dom.is_button tests, if an element is a button like element.
    Button like elements are the following:

    button,
    button[type=button],
    button[type=submit],
    input[type=image],
    input[type=button],
    input[type=reset],
    input[type=submit]

Bug Fixes

  • pat-depends: Fix infinite loop situations. (af5ecc5)

    Fix some situations where infinite loops were created of unnecessary
    function calls were done:

  • Do not en/disable already en/disabled inputs.
  • Do not trigger and pat-depends element if the input is the element
    itself and not a contained sub-input.
  • Do not trigger input events on button-like elements.

Maintenance

  • Add deprecation notice for Modernizr. (cd84cc7)

    Modernizr will be removed in an upcoming minor version. It is not really
    necessary anymore. Most browser support almost latest web technology and IE is
    dead.
    A no-js class on the body will still be replaced with a js class.