Skip to content

Commit 08a6976

Browse files
author
pemrouz
committed
1.1.0
1 parent a7b35e3 commit 08a6976

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

client.bundle.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -196,11 +196,13 @@ var render = function (ripple) { return function (next) { return function (el) {
196196
var name = ref[0];
197197
var values = ref[1];
198198

199-
return values.some(function (v, i) {
200-
var from = attr(el, name) || '';
201-
return includes(v)(from) ? false
202-
: attr(el, name, (from + ' ' + v).trim())
203-
})
199+
return values
200+
.map(function (v, i) {
201+
var from = attr(el, name) || '';
202+
return includes(v)(from) ? false
203+
: attr(el, name, (from + ' ' + v).trim())
204+
})
205+
.some(Boolean)
204206
})
205207
.some(Boolean) ? el.draw() : next(el)
206208
}; }; };

client.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client.min.js.gz

0 Bytes
Binary file not shown.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rijs.needs",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"main": "index",
55
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
66
"scripts": {

0 commit comments

Comments
 (0)