We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a394a25 commit 560f4afCopy full SHA for 560f4af
CHANGELOG.md
@@ -5,7 +5,11 @@ Changelog
5
6
# 1.x release
7
8
-## v1.3.4 (master)
+## 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
13
14
- Fix: remove broken saucelabs integration
15
dist.js
@@ -242,7 +242,7 @@ function createStyleProperty(el) {
242
var output = {};
243
for (var i = 0; i < style.length; ++i) {
244
var item = style.item(i);
245
- output[item] = style[item];
+ output[item] = String(style[item]);
246
// hack to workaround browser inconsistency with url()
247
if (output[item].indexOf('url') > -1) {
248
output[item] = output[item].replace(/\"/g, '')
0 commit comments