Skip to content

Commit

Permalink
Fixed mismatched quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyu95 committed Apr 23, 2018
1 parent 960cd60 commit f13028d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/static/js/request/new-request-agency.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ $(document).ready(function () {
});

// Loop through required fields and apply a data-parsley-required attribute to them
var requiredFields = ['request-title", "request-description", "first-name", "last-name", "email',
'phone", "fax", "address-line-1", "method-received", "request-date", "city", "zipcode'];
var requiredFields = ["request-title", "request-description", "first-name", "last-name", "email",
"phone", "fax", "address-line-1", "method-received", "request-date", "city", "zipcode"];
for (var i = 0; i < requiredFields.length; i++) {
$("#" + requiredFields[i]).attr("data-parsley-required", "");
}
Expand Down

0 comments on commit f13028d

Please sign in to comment.