Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Equal effing columns
Browserify
$ npm install --save eqcol
Bower
$ bower install --save eqcol
<script src="bower_components/eqcol/dist/eqcol.min.js"></script>
<div class="row" data-eqcol>
<div class="col-md-4" data-eqcol-watch>
...
</div>
<div class="col-md-4" data-eqcol-watch>
...
</div>
<div class="col-md-4" data-eqcol-watch>
...
</div>
</div>
import eqcol from 'eqcol';
const row = document.querySelector('.row');
eqcol(row, {
// options...
});
<div class="row" data-eqcol="foo">
<div class="col-md-4" data-eqcol-watch="foo">
...
</div>
<div class="col-md-4" data-eqcol-watch="foo">
<div class="row" data-eqcol="bar">
<div class="col-sm-6" data-eqcol-watch="bar">
...
</div>
<div class="col-sm-6" data-eqcol-watch="bar">
...
</div>
</div>
</div>
<div class="col-md-4" data-eqcol-watch="foo">
...
</div>
</div>
import eqcol from 'eqcol';
const rows = document.querySelectorAll('.row');
eqcol(rows, {
// options...
});
Initializes and equalizes the specified element(s). Returns an array of Eqcol
objects.
Type: string
|| Element
|| NodeList
The container of the element(s) to be equalized. For instance, the parent row of the targeted columns.
Type: object
Optionally pass an object with the any of the following values.
Name | Type | Default | Description |
---|---|---|---|
byRow | boolean | true | Matches each rows' child elements height only |
minHeight | integer | 0 | The minimum height of each column |
useTallest | boolean | true | Whether to use the tallest column as height of all columns |
groupAttr | string | data-eqcol | Passed a unique ID of each container |
watchAttr | string | data-eqcol-watch | Passed the value of its matching unique parent ID |
eqcol(element, 'equalize')
Call the equalize
function directly.
eqcol(element, 'destroy')
Reset all of the columns back to auto
height.
There are two events that are exposed.
Name | Description |
---|---|
equal | Fired right before the columns are equalized |
equaled | Fired after the columns are equalized |
const rows = eqcol('.row', options);
rows.forEach(row => {
row.addEventListener('equaled', () => {
// do stuff after equalize has finished
});
});
MIT © Alex Cross
FAQs
Equal effing columns
The npm package eqcol receives a total of 3 weekly downloads. As such, eqcol popularity was classified as not popular.
We found that eqcol demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.