Skip to content

Commit

Permalink
v2.36 - remove extra comma in options setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike authored and Mike committed Nov 7, 2009
1 parent ce43241 commit 947f03f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.form.js
@@ -1,6 +1,6 @@
/*
* jQuery Form Plugin
* version: 2.35 (06-NOV-2009)
* version: 2.36 (07-NOV-2009)
* @requires jQuery v1.2.6 or later
*
* Examples and documentation at: http://malsup.com/jquery/form/
Expand Down Expand Up @@ -63,7 +63,7 @@ $.fn.ajaxSubmit = function(options) {
options = $.extend({
url: url,
type: this.attr('method') || 'GET',
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank',
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
}, options || {});

// hook for manipulating the form data before it is extracted;
Expand Down

0 comments on commit 947f03f

Please sign in to comment.