Releases: Scottie35/PikaJS
PikaJS v3.2.3
PikaJS v3.2.2
Remove stray $, further code optimization
PikaJS v3.2.1
Fixed bug in .css() where colors like '#aabbcc' were being unnecessarily converted by $.longHex()
PikaJS v3.2.0
Update ._on() again to fix crazy bugs
PikaJS v3.1.0
This is a bugfix release. There were 2 rather glaring issues:
- Updated .contains() so that it works when
this
is multiple elements - Updated ._on() so that it works properly with complex, nested elements. Also fixed special mouseenter/mouseleave compensations.
PikaJS v3.0.0
Pika 3.0's biggest change is that it no longer runs "on top of" Balalaika. The Balalaika code has been fully integrated into Pika - and improved!
The rest of the changes are bug fixes in several functions like $.JS
and $.t
, as well as numerous code optimizations (as always).
PikaJS 3.0.0 is even smaller than 2.0.4!
There are no breaking changes from v2.
PikaJS v2.0.4
Fix bug in ._on
related to mouseenter/mouseleave;
Fix bug in ._on
to make named delegated event listeners work properly for keyboard/mouse events;
Improve .show
so it compensates for all inline/stylesheet possibilities
PikaJS v2.0.3
Changed .show
so that if display: none
is set via inline CSS, it will use the stylesheet CSS 'display' value instead of default 'block'.
IOW, you can now .show
display: flex
, display: table
, and so on.
PikaJS v2.0.2
v2.0.2 - Improved .select / .find so that when this
contains multiple elements, this.find(expr)
will include matching descendants from ALL the elements - instead of just the first one.
PikaJS v2.0.1
This updated release includes one new method: $.debounce. Very handy for rapid-fire JS events!