@area17/a17-behaviors
Advanced tools
Comparing version 0.2.5 to 0.2.6
@@ -506,3 +506,3 @@ 'use strict'; | ||
if (bNode.dataset && bNode.dataset[attr]) { | ||
return bNode.dataset[attr].split(' '); | ||
return bNode.dataset[attr].split(' ').filter(bName => bName); | ||
} else { | ||
@@ -509,0 +509,0 @@ return []; |
@@ -504,3 +504,3 @@ var getCurrentMediaQuery = function() { | ||
if (bNode.dataset && bNode.dataset[attr]) { | ||
return bNode.dataset[attr].split(' '); | ||
return bNode.dataset[attr].split(' ').filter(bName => bName); | ||
} else { | ||
@@ -507,0 +507,0 @@ return []; |
{ | ||
"name": "@area17/a17-behaviors", | ||
"version": "0.2.5", | ||
"version": "0.2.6", | ||
"description": "JavaScript framework to attach JavaScript events and interactions to DOM Nodes", | ||
@@ -30,6 +30,6 @@ "type": "module", | ||
"devDependencies": { | ||
"rollup": "^3.2.2", | ||
"@rollup/plugin-node-resolve": "^15.0.0", | ||
"@rollup/plugin-commonjs": "^23.0.0" | ||
"rollup": "^3.3.0", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-commonjs": "^23.0.2" | ||
} | ||
} |
69406