don't draw bg gradients if hue is 0

This commit is contained in:
Matt Claypotch 2012-09-27 14:58:23 -07:00
Родитель 54fcdee0fa
Коммит d0e553412c
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,7 @@
var tile = el.querySelector('[data-hue]');
if (!tile) return;
var hue = tile.getAttribute('data-hue');
if (!hue) return;
var canvas = el.querySelector('canvas') || document.createElement('canvas');
var cs = window.getComputedStyle(el, null);
var width = parseInt(cs.getPropertyValue('width'), 10);