Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/input-field.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
function processInputs(storage) {
// exclude input elements from analysis that cannot be used to input meaningful data (type submit|reset|button|image)
// and that cannot be styled appropriately (type radio|checkbox)
$('input:not([type=submit],[type=reset],[type=button],[type=image],[type=radio],[type=checkbox]),textarea').each(function (index) {
$('input:not([type=submit],[type=reset],[type=button],[type=image],[type=radio],[type=checkbox]):read-write,textarea:read-write').each(function (index) {
let fieldType = determineFieldType(this, storage);
if (typeof fieldType !== "undefined") {
getSecurityStatus(storage, this.form);
Expand Down