2025-W32

Aug 4–10, 2025

3 releases

Airfleet plugins have focused on improving performance and usability. The airfleet-elements-videos-plugin now supports loading background videos only after user interaction, with an option to require user interaction even when the video is in viewport on page load. Additionally, the airfleet-generator-plugin has replaced the _airfleet global variable with _af in JavaScript mustache templates for consistency. The airfleet-elements-responsive-plugin has made its JS utilities available through a global variable _af, providing an alternative interface to existing functionality.

airfleet-elements-videos-plugin

Release 3.5.0

Added support for lazy-loading background videos after user interaction

GitHub
View full changelog

Changed

  • Added support for loading background videos only after user interaction, even when videos are in viewport on page load (new option "Require User Interaction for Lazy-load")
airfleet-generator-plugin

Release 1.12.0

Replaced _airfleet global variable with _af in JavaScript mustache template.

GitHub
View full changelog

Updated

  • Replaced _airfleet global var with _af in JavaScript mustache template.
airfleet-elements-responsive-plugin

Release 2.5.0

JS utilities are now available through a global variable _af

GitHub
View full changelog

Changed

  • JS utilities are now also available through global var _af (e.g. _af.onBreakpointMatch) under the same names, with the exceptions below. Old interface remains at window._airfleet.elements.breakpoints
  • Added _af.breakpoints (same as window._airfleet.elements.breakpoints.data)
  • Added _af.breakpointDirections (same as window._airfleet.elements.breakpoints.directions)
  • Added _af.isAboveBreakpoint (same as window._airfleet.elements.breakpoints.isMin)
  • Added _af.isBelowBreakpoint (same as window._airfleet.elements.breakpoints.isMax)
  • Added _af.isBetweenBreakpoints (same as window._airfleet.elements.breakpoints.isBetween)
  • Added _af.isOnlyBreakpoint (same as window._airfleet.elements.breakpoints.isOnly)
  • Added _af.onBreakpointChange (same as window._airfleet.elements.breakpoints.onChange)