Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 689 Bytes

README.md

File metadata and controls

49 lines (36 loc) · 689 Bytes

Dev-tools

A javascript utility for comfort development of projects.

Install with npm

npm install dev-tools --save

Use with node.js, browserify or webpack:

var DevTools = require('dev-tools');

DevTools();

Options

gridOptions

Type: object

Values

{
  unitHeight: 0,
  colCountInRow: 12,
  colOuterPadding: 0
}

unitHeight - vertical unit height

colCountInRow - grid columns count in one row

colOuterPadding - columns outer padding

Example

var DevTools = require('dev-tools');

DevTools({
  gridOptions: {
    unitHeight: 50,
    colCountInRow: 12,
    colOuterPadding: 20
  }
});