Skip to content

Commit

Permalink
Fixes saturation default value
Browse files Browse the repository at this point in the history
The CSS saturation filter is now be set to 1 in the Instacam defaults. This fixes #25.
  • Loading branch information
xavierfoucrier committed Oct 7, 2018
1 parent 5b18f04 commit 93781a0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ let camera = new Instacam(document.querySelector('#canvas1'), {
opacity: 1,
brightness: 1,
contrast: 1,
saturation: 0,
saturation: 1,
hue: 0,
invert: 0,
grayscale: 0,
Expand Down Expand Up @@ -210,7 +210,7 @@ The contrast option **adjusts the contrast** of the viewport. A value of 0 will

#### saturation
Type: `Number`
Default: `0`
Default: `1`
Minimum: `0`
Maximum: `None`

Expand Down
4 changes: 2 additions & 2 deletions dist/instacam.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 93781a0

Please sign in to comment.