Skip to content

Latest commit

 

History

History
167 lines (91 loc) · 3.42 KB

CHANGELOG.md

File metadata and controls

167 lines (91 loc) · 3.42 KB

new imgix.js 1.0.21

Features

N/A

Bug Fixes

This release fixes a race condition when using the onLoad callback with imgix.fluid() where if multiple image updates are requested before the first image actually loads then fluidUpdateCount could be incorrect.

new imgix.js 1.0.20

Features

  • attachGradientTo no longer requires a base color to be passed. rgba colors are now valid as well. see docs

Bug Fixes

N/A

new imgix.js 1.0.19

Features

  • attachGradientTo added to imgix.URL see docs
  • lazyColorSet config option added to imgix.fluid see docs
  • onLoad config callback added to imgix.fluid see docs

Bug Fixes

N/A

new imgix.js 1.0.18

Features

AMD Support

Bug Fixes

N/A

new imgix.js 1.0.17

Features

Improved pinch zoom by taking scale value directly from gesture event.

Bug Fixes

Fixed pinch zoom on iOS devices.

new imgix.js 1.0.16

Features

N/A

Bug Fixes

Ensure version was properly reflected in source code for git tag.

new imgix.js 1.0.15

Features

imgix.fluid now supports maxHeight and maxWidth options to ensure no requests over this size are requested automatically via imgix.js. This both default to 5000.

Bug Fixes

N/A

new imgix.js 1.0.14

Features

imgix.fluid now supports lazy loading of images with when the lazyLoad option is set to true. This option defaults to false for backwards compatibility.

Bug Fixes

N/A

new imgix.js 1.0.13

Features

Add support for the imgix blend API.

Bug Fixes

N/A

new imgix.js 1.0.12

Features

Respect protocol of request.

Bug Fixes

N/A

new imgix.js 1.0.11

Features

imgix.fluid now supports an ignoreDPR option that when set to true never sets the dpr imgix param (even on retina screens). This option defaults to false for backwards compatibility

Bug Fixes

N/A

Breaking Changes

N/A

new imgix.js 1.0.10

Features

Support for blending params

Setters
Getters

Support chaining setters

For example:

var i = new imgix.URL('http://static-a.imgix.net/macaw.png');
i.setSepia(50).setWidth(50).setHeight(100);
i.attachImageTo('.macaw');

Bug Fixes

imgix.fluid now supports a token option for signing images.

var opts = {
    token: "TOKEN_HERE"
}

imgix.onready(function() {
    imgix.fluid(opts);
});

Breaking Changes

N/A