Releases: TimvdLippe/iron-lazy-pages
Fixed import of IronSelectableBehavior
IronSelectableBehavior
is now correctly imported by IronLazyPagesBehavior
.
Neon-lazy-pages implementation
The new neon-lazy-pages
element is the hybrid version of iron-lazy-pages
and neon-animated-pages
. You can set a global animation on the element, or configure animations on the 1 custom element inside each iron-lazy-page
template.
Light dom compatible
iron-lazy-pages
is now light dom compatible. You can use the <content>
tag inside a iron-lazy-pages
for a wrapper element.
Fixed an issue with importing with Polymer 1.6
Fixed issue #22 for compatibility with Polymer 1.6
Add async property for importHref
imporHref
can now be configured to be async with the loadAsync
property on the iron-lazy-pages
.
Fixed a bug with restamp and not hiding immediately
Fixed a bug where restamping would not work if hideImmediately
was not set. Ref #13
Add restamp option
Add restamp property and hide elements by default. It brings the iron-lazy-page
more in line with dom-if
where restamping is disabled by default and instead hides the elements. See #11
Fix issue with undefined event target
In Firefox e.srcElement
was undefined. e.target
is the standard field for this.
Fix issue with nested selector
Fixed an issue where nested selector fired events which iron-lazy-pages
captured. See #8
Version 1
The first version of iron-lazy-pages
Changes from version 0.1.0:
- Added new property
loading
. This property is true while the import href is loading and reset to false when the request has been resolved. - Changed stamping order. Elements are now added when the import has been resolved. If you want to remove the previous element immediately, set
hideImmediately
to true. - Added tests
- Added documentation for elements
- Added Travis configuration
- Added GitHub pages