github wavesoft/dot-dom 0.2.1
v0.2.1

latest releases: v0.3.1, 0.3.0, 0.2.2...
8 years ago

Starting from this release, the pre-defined set of HTML tags is now removed. You will now have to manually specify the tags you are going to use, by extracting them from H. For example:

// v0.1.0
R(div('Hello world'), document.body);

// v0.2.1
const {div} = H;
R(div('Hello world'), document.body);

Changelog

  • ADDED: Introduced child reconciliation algorithm
  • ADDED: Custom tag expansion shorthands
  • REMOVED: Pre-defined HTML Tag shorthands.

Don't miss a new dot-dom release

NewReleases is sending notifications on new releases.