Skip to content

Commit

Permalink
Release v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vodkabears committed Nov 5, 2016
1 parent 05445c6 commit d3a2cbc
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
### 0.5.1
* Remove deprecated jQuery load method.

### 0.5.0
* Add the `className` option.

Expand Down
10 changes: 5 additions & 5 deletions dist/jquery.vide.js
@@ -1,5 +1,5 @@
/*
* Vide - v0.5.0
* Vide - v0.5.1
* Easy as hell jQuery plugin for video backgrounds.
* http://vodkabears.github.io/vide/
*
Expand Down Expand Up @@ -172,10 +172,10 @@
callback(this.src);
};

$('<img src="' + path + '.gif">').load(onLoad);
$('<img src="' + path + '.jpg">').load(onLoad);
$('<img src="' + path + '.jpeg">').load(onLoad);
$('<img src="' + path + '.png">').load(onLoad);
$('<img src="' + path + '.gif">').on('load', onLoad);
$('<img src="' + path + '.jpg">').on('load', onLoad);
$('<img src="' + path + '.jpeg">').on('load', onLoad);
$('<img src="' + path + '.png">').on('load', onLoad);
}

/**
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.vide.min.js

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

2 changes: 1 addition & 1 deletion package.js
Expand Up @@ -3,7 +3,7 @@ Package.describe({
git: 'https://github.com/VodkaBears/Vide.git',
name: 'vodkabears:vide',
summary: 'Easy as hell jQuery plugin for video backgrounds',
version: '0.5.0'
version: '0.5.1'
});

Package.onUse(function(api) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vide",
"version": "0.5.0",
"version": "0.5.1",
"description": "Easy as hell jQuery plugin for video backgrounds.",
"keywords": [
"jquery-plugin",
Expand Down

0 comments on commit d3a2cbc

Please sign in to comment.