Skip to content
This repository has been archived by the owner on May 14, 2019. It is now read-only.

Releases: hnqlv/minigrid

v3.1.1

25 Nov 21:53
Compare
Choose a tag to compare

v3.1.0

25 Nov 21:22
Compare
Choose a tag to compare

v3.0.6

31 Aug 14:47
Compare
Choose a tag to compare
  • Update npmcdn url #57

v3.0.5

01 Aug 11:03
Compare
Choose a tag to compare
  • Revert change containerEle.style.display = 'inline'; causing issues #55

v3.0.4

24 May 10:05
Compare
Choose a tag to compare
  • Fixes getBoundingClientRect() computing width for hidden containers #50

v3.0.3

25 Apr 10:38
Compare
Choose a tag to compare
  • Move site to js.org

v3.0.2

21 Apr 08:54
Compare
Choose a tag to compare
  • Move GitHub pages to master branch into site folder

v3.0.1

19 Apr 23:44
Compare
Choose a tag to compare
  • Add dist file to package.json

v3.0.0

19 Apr 23:23
Compare
Choose a tag to compare

The major change is the API. We took one step back to its core principle of "keep it simple".

var props = {
  container: '.cards',
  item: '.card',
  guter: 8
};
var grid = new Minigrid(props);
grid.mount();
  • Back to 2kb 馃帀
  • mount() method to initialize Minigrid
  • Animation was removed due to issues when dealing with many items which is the most of the user cases
  • Remove the custom loading causing issues when loaded with require
  • Round posX, poxY values #48
  • Fixes the issue when working with multiple grids/selectors #43
  • Works when loaded via module #40

v2.20

21 Oct 15:22
Compare
Choose a tag to compare
  • Add containerLoaded and itemLoaded options #37
  • Fix minification #38
  • Remove webpack
  • Remove custom forEach loop
  • Replace custom window.onload function for window.addEventListener('load'). Closes #36
  • Add backface-visibility to prevent text rendering issues. Closes #26