forked from getgrav/grav-plugin-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed forms submission in IE (fixes getgrav#19)
- Loading branch information
Showing
6 changed files
with
122 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# v0.2.1 | ||
## XX/XX/2015 | ||
|
||
1. [](#bugfix) | ||
* Fixed form submission not working in IE | ||
|
||
# v0.2.0 | ||
## 08/06/2015 | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
(function($) { | ||
$(function() { | ||
/** | ||
* polyfill for html5 form attr | ||
*/ | ||
|
||
// detect if browser supports this | ||
var sampleElement = $('[form]').get(0); | ||
var isIE11 = !(window.ActiveXObject) && "ActiveXObject" in window; | ||
if (sampleElement && window.HTMLFormElement && sampleElement.form instanceof HTMLFormElement && !isIE11) { | ||
// browser supports it, no need to fix | ||
return; | ||
} | ||
|
||
/** | ||
* Append a field to a form | ||
* | ||
*/ | ||
$.fn.appendField = function(data) { | ||
// for form only | ||
if (!this.is('form')) return; | ||
|
||
// wrap data | ||
if (!$.isArray(data) && data.name && data.value) { | ||
data = [data]; | ||
} | ||
|
||
var $form = this; | ||
|
||
// attach new params | ||
$.each(data, function(i, item) { | ||
$('<input/>') | ||
.attr('type', 'hidden') | ||
.attr('name', item.name) | ||
.val(item.value).appendTo($form); | ||
}); | ||
|
||
return $form; | ||
}; | ||
|
||
/** | ||
* Find all input fields with form attribute point to jQuery object | ||
* | ||
*/ | ||
$('form[id]').submit(function(e) { | ||
// serialize data | ||
var data = $('[form=' + this.id + ']').serializeArray(); | ||
// append data to form | ||
$(this).appendField(data); | ||
}).each(function() { | ||
var form = this, | ||
$fields = $('[form=' + this.id + ']'); | ||
|
||
$fields.filter('button, input').filter('[type=reset],[type=submit]').click(function() { | ||
var type = this.type.toLowerCase(); | ||
if (type === 'reset') { | ||
// reset form | ||
form.reset(); | ||
// for elements outside form | ||
$fields.each(function() { | ||
this.value = this.defaultValue; | ||
this.checked = this.defaultChecked; | ||
}).filter('select').each(function() { | ||
$(this).find('option').each(function() { | ||
this.selected = this.defaultSelected; | ||
}); | ||
}); | ||
} else if (type.match(/^submit|image$/i)) { | ||
$(form).appendField({ | ||
name: this.name, | ||
value: this.value | ||
}).submit(); | ||
} | ||
}); | ||
}); | ||
}); | ||
|
||
})(jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters