Skip to content

Releases: franverona/loadgo

Loadgo v2.2.1

16 Apr 16:13
Compare
Choose a tag to compare
  • Code style
  • Javascript: setProgress method now checks if element exists.
  • Added Gruntfile.
  • Fixed Javascript examples.

LoadGo v2.2

23 Jun 14:42
Compare
Choose a tag to compare
  • Added a new method: destroy.
  • Added tests (more will be added in the future).
  • Fix several bugs.
  • LoadGo default template changed.
  • Improved documentation.
  • Javascript version improved.
  • jQuery version improved.

Breaking changes

Since 2.2 version, LoadGo now wraps the image on a div element, then add the overlay as the first sibling of the image following this template:

<div class="loadgo-container">
  <image src="logo.png" class="..." style="..." />
  <div class="loadgo-overlay" style="..." />
</div>

This change makes easy for the plugin to calculate overlay's dimension and position. Make sure that your CSS rules like div > img are applied correctly.

For example, if you have html and CSS like these:

<style>
  .image-container > img {
      margin: 0 auto;
  }
</style>

<div class="image-container">
  <img src="logo.png" />
</div>

You should change it to this:

<style>
  div > div > img {
      margin: 0 auto;
  }
</style>

<div class="image-container">
  <img src="logo.png" />
</div>

Or even better, assign a CSS class and forget about >:

<style>
  .my-image {
      margin: 0 auto;
  }
</style>

<div class="image-container">
  <img src="logo.png" class="my-image" />
</div>

LoadGo v2.1

12 Apr 14:52
Compare
Choose a tag to compare
  • Fix bug with LoadGo jQuery version where 'left to right' direction was not working.
  • Added some examples.

LoadGo v2.0

02 Apr 12:06
Compare
Choose a tag to compare
  • Pure Javascript version release: now you can use LoadGo plugin without jQuery.
  • Fix overlay reposition bug when resizing window.

LoadGo 1.0.1

02 Nov 11:50
Compare
Choose a tag to compare

Fixes for 'undefined' errors with newer jQuery versions.

LoadGo 1.0

15 Oct 17:22
Compare
Choose a tag to compare

LoadGo 1.0 release