Skip to content

Commit

Permalink
Fixed bug with mismatched quotes in new request js
Browse files Browse the repository at this point in the history
  • Loading branch information
johnyu95 committed Apr 20, 2018
1 parent 40a0264 commit 37114a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 @@ -82,11 +82,11 @@ $(document).ready(function () {
title: "Example Request"
});
$("#request-description").click(function () {
$("#request-description").popover('show");
$("#request-description").popover("show");
});
$("#request-description").popover();
// $("#request-description").click(function(){
// $("#request-description").popover('show");
// $("#request-description").popover("show");
// });

// jQuery mask plugin to format fields
Expand Down
2 changes: 1 addition & 1 deletion app/static/js/request/new-request-user.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ $(document).ready(function () {
});
$("#request-description").popover();
// $("#request-description").click(function(){
// $("#request-description").popover('show");
// $("#request-description").popover("show");
// });

// Apply parsley validation styles to the input forms for a new request.
Expand Down

0 comments on commit 37114a4

Please sign in to comment.