dev-tools
v0.1.6
Published
A tool for web developers
Downloads
256
Readme
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
}
});