What you have changed should work.
Here's the changes that I make to my signature_pad.js
opts = options || {};
this.velocityFilterWeight = opts.velocityFilterWeight || 0.7;
this.minWidth = opts.minWidth || 0.5;
this.maxWidth = opts.maxWidth || 1.5;
this.dotSize = opts.dotSize || function () {
return (this.minWidth + this.maxWidth) / 2;
};
this.penColor = opts.penColor || "blue";
this.backgroundColor = opts.backgroundColor || "white";
Have you tried clearing your browser cache?