0.1.1 • Published 10 years ago

gardr-plugin-host-collapse v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Gardr Collapse Plugin

Gardr plugin to collapse sections (typically banners, but can be used for anything) that are less than a minimum number of pixels (default 10).

Install

npm install gardr-plugin-host-collapse --save

Use

Add these to your hostBundle.js file:

	var collapse = require('gardr-plugin-host-collapse');
	gardrHost.plugin(collapse);

The plugin will be called for each item after render, and will set display: none on any that are less than the minimum number of pixels.

The default minimum is 10 pixels. You can also configure your own threshold using gardr options (define-options). The plugin will use the configured options if they exist.

Configure custom thresholds like this, in script.js:

	var gardr = gardrHost({
	    iframeUrl: 'http://127.0.0.1:9966/gardr/iframe.html', // cross-domain
	    collapseIfWidthLessThan  : 20,
	    collapseIfHeightLessThan : 20
	});
0.1.1

10 years ago

0.1.0

10 years ago

0.0.0

10 years ago