Skip to content

Commit

Permalink
1.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Download committed Sep 17, 2015
1 parent e579ebe commit 925c1ba
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 21 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014 Nattawat Nonsung (author) and Carlos Fagiani Junior
2015 Jemar Jones, Nattawat Nonsung and Stijn de Witt
2015 Jemar Jones, Nattawat Nonsung, Razvan Popa and Stijn de Witt

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# jQuery Flip <sub><sup>v1.0.16</sup></sub>
# jQuery Flip <sub><sup>v1.0.17</sup></sub>

**A lightweight jQuery plugin to create 3d flip animation.**
See the [project page](http://nnattawat.github.io/flip/)

## What's new
* **Flip v1.0.17**
* Fixed [Missing "main" and "ignore" entry in bower.json #50](https://github.com/nnattawat/flip/issues/50)
* Fixed [Use jQuery ~2.0 in bower.json #51](https://github.com/nnattawat/flip/issues/51)
* Thanks to [Razvan Popa](https://github.com/VholtWCP) for reporting and fixing these!

* **Flip v1.0.16**
* Made Flip [Idempotent](https://en.wikipedia.org/wiki/Idempotence), meaning it won't hurt if you call it more than once on the same element. Fixes [Not working after ajax refresh #40](https://github.com/nnattawat/flip/issues/40).
* Fixed a rendering glitch in Chrome and Opera. [Back face always visible on Chrome #39](https://github.com/nnattawat/flip/issues/39).
Expand Down Expand Up @@ -55,15 +60,15 @@ See the [project page](http://nnattawat.github.io/flip/)
## Getting Started

### CDN
https://cdn.rawgit.com/nnattawat/flip/v1.0.16/dist/jquery.flip.min.js
https://cdn.rawgit.com/nnattawat/flip/v1.0.17/dist/jquery.flip.min.js

### Download
* [jquery.flip.js][max] (development version, commented ~9kB)
* [jquery.flip.min.js][min] (production version, minified ~4kB, gzipped ~2kB)
* [jquery.flip.min.js.map][map] (source map, ~5kB)
[max]: https://cdn.rawgit.com/nnattawat/flip/v1.0.16/dist/jquery.flip.js
[min]: https://cdn.rawgit.com/nnattawat/flip/v1.0.16/dist/jquery.flip.min.js
[map]: https://cdn.rawgit.com/nnattawat/flip/v1.0.16/dist/jquery.flip.min.js.map
[max]: https://cdn.rawgit.com/nnattawat/flip/v1.0.17/dist/jquery.flip.js
[min]: https://cdn.rawgit.com/nnattawat/flip/v1.0.17/dist/jquery.flip.min.js
[map]: https://cdn.rawgit.com/nnattawat/flip/v1.0.17/dist/jquery.flip.min.js.map

### Bower
<pre>bower install flip</pre>
Expand Down
24 changes: 12 additions & 12 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "flip",
"version": "1.0.16",
"dependencies": {
"jquery": "~2.0"
},
"devDependencies": {
"jquery": "~2.0"
},
"main": [
"src/flip.js"
],
"ignore": []
"name": "flip",
"version": "1.0.17",
"dependencies": {
"jquery": "~2.0"
},
"devDependencies": {
"jquery": "~2.0"
},
"main": [
"src/flip.js"
],
"ignore": []
}
2 changes: 1 addition & 1 deletion dist/jquery.flip.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! flip - v1.0.16 - 2015-08-09
/*! flip - v1.0.17 - 2015-09-17
* https://github.com/nnattawat/flip
* Copyright (c) 2015 Nattawat Nonsung; Licensed MIT */
(function( $ ) {
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.flip.min.js

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flip",
"version": "1.0.16",
"version": "1.0.17",
"description": "jQuery Plugin - 3d Flip Content",
"keywords": [
"jquery-plugin"
Expand All @@ -23,6 +23,10 @@
"email": "jemarkjones@gmail.com",
"url": "http://JKJones.me/"
},
{
"name": "Razvan Popa",
"url": "https://github.com/VholtWCP"
}
{
"name": "Stijn de Witt",
"email": "StijnDeWitt@hotmail.com",
Expand Down

0 comments on commit 925c1ba

Please sign in to comment.