Artur Bartczak

Results 1 issues of Artur Bartczak

When 'callback' option was missing script was ignoring 'width' option. This wont work: ``` javascript $.farbtastic("#color", {width: 250}); ``` This will: ``` javascript $.farbtastic("#color", {callback: function(){}, width: 250}); ``` Proposed...