Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 538 Bytes

UPDATES.md

File metadata and controls

24 lines (15 loc) · 538 Bytes

Updates

Listed in most recent version

1.0.11

Added the raw element, which lets you use raw html in wavejs

1.0.10

Added WJS.css which can return classes based on passed props.

Examples

// Returns "always-class"
WJS.css({ }, { always: "always-class", myprop: "another-class" });

// Returns same as above
WJS.css({ myprop: false }, { always: "always-class", myprop: "another-class" });

// Returns "always-class another-class"
WJS.css({ myprop: true }, { always: "always-class", myprop: "another-class" });