diff options
author | emkael <emkael@tlen.pl> | 2019-11-12 01:07:04 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-11-12 01:07:04 +0100 |
commit | c86e17bd9464c53e1e09663443a5e1b228cf96ef (patch) | |
tree | 7bbada3e4744c5619dddad5ce097cc57a6fe8af1 /playoff.js | |
parent | 8ef9f0960ead64f0701d360c12f0d75393de66cb (diff) |
Fixed parsing canvas settings from HTML attribute string
Diffstat (limited to 'playoff.js')
-rw-r--r-- | playoff.js | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -33,6 +33,9 @@ var playoff = { var attr = 'data-' + setting.replace(/_/g, '-'); var attr_value = canvas.getAttribute(attr); if (attr_value) { + if (attr.substr(attr.length-6) == 'offset') { + attr_value = parseInt(attr_value); + } defaults[setting] = attr_value; } } |