Skip to content

Commit

Permalink
Fix auto_rotate name in Jekyll::ResponsiveImage::Config#DEFAULTS
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Wynn committed Mar 13, 2017
1 parent b611cf4 commit 80eca76
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/jekyll-responsive-image/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ module Jekyll
module ResponsiveImage
class Config
DEFAULTS = {
'default_quality' => 85,
'base_path' => 'assets',
'output_path_format' => 'assets/resized/%{filename}-%{width}x%{height}.%{extension}',
'sizes' => [],
'extra_images' => [],
'respect_exif_rotation' => false
'default_quality' => 85,
'base_path' => 'assets',
'output_path_format' => 'assets/resized/%{filename}-%{width}x%{height}.%{extension}',
'sizes' => [],
'extra_images' => [],
'auto_rotate' => false
}

def initialize(site)
Expand Down

0 comments on commit 80eca76

Please sign in to comment.