Skip to content

Commit 560f4af

Browse files
author
David Frank
committed
update dist and changelog
1 parent a394a25 commit 560f4af

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ Changelog
55

66
# 1.x release
77

8-
## v1.3.4 (master)
8+
## v1.3.5 (master)
9+
10+
- Fix: numeric value in style property is not casted to string properly (thx @AaronHirsch)
11+
12+
## v1.3.4
913

1014
- Fix: remove broken saucelabs integration
1115

dist.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ function createStyleProperty(el) {
242242
var output = {};
243243
for (var i = 0; i < style.length; ++i) {
244244
var item = style.item(i);
245-
output[item] = style[item];
245+
output[item] = String(style[item]);
246246
// hack to workaround browser inconsistency with url()
247247
if (output[item].indexOf('url') > -1) {
248248
output[item] = output[item].replace(/\"/g, '')

0 commit comments

Comments
 (0)