Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallen23 committed Jan 14, 2013
1 parent ae1f15c commit 1aa090a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,9 @@

0.2.1 / 2013-01-14
==================

* [tools] fixed grunt min task

0.2.0 / 2013-01-14
==================

Expand Down
2 changes: 1 addition & 1 deletion component.json
@@ -1,7 +1,7 @@
{
"name": "framejax",
"description": "a jQuery plugin to submit data through an iFrame",
"version": "0.2.0",
"version": "0.2.1",
"homepage": "https://github.com/jgallen23/framejax",
"license": "MIT",
"copyright": "JGA",
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.framejax.js
@@ -1,6 +1,6 @@
/*!
* framejax - a jQuery plugin to submit data through an iFrame
* v0.2.0
* v0.2.1
* https://github.com/jgallen23/framejax
* copyright JGA 2013
* MIT License
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.framejax.min.js
@@ -1,8 +1,8 @@
/*!
* framejax - a jQuery plugin to submit data through an iFrame
* v0.2.0
* v0.2.1
* https://github.com/jgallen23/framejax
* copyright JGA 2013
* MIT License
*/
;
(function(e){var t=0,n=function(t){return e('<iframe name="'+t+'" />').attr({id:t,name:t,width:0,height:0}).css("display","none").appendTo("body")};e.fn.framejax=function(r){return this.each(function(){var r=e(this);if(r[0].tagName!="FORM")throw new Error("all selectors must be form tags");var i=function(){var i="__framejax__"+t++,s=n(i);s.on("load",function(){var t=e(this).contents().find("body").html();r.trigger("complete",t),s.remove()}),r.attr("target",i)};r.on("submit",i),r.on("framejaxSubmit",i)})}})(window.jQuery);

0 comments on commit 1aa090a

Please sign in to comment.