diff options
author | Malf Furious <m@lfurio.us> | 2018-10-22 05:20:08 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-10-22 05:20:08 -0400 |
commit | c595ebf46f9fc5ab2f0d192f4841e9ddea548933 (patch) | |
tree | 01fbc80776b4b56dae872fa14b1a6c9505a26d94 | |
parent | 325b697fed92cb56eaa05841e03462b7b2f0c385 (diff) | |
download | scrott-c595ebf46f9fc5ab2f0d192f4841e9ddea548933.tar.gz scrott-c595ebf46f9fc5ab2f0d192f4841e9ddea548933.zip |
stdpage: Display issue modal when clicked on pad view
Updated the javascript to wire-up the issue list items shown on pad
views. When these are clicked the associated issue modal is displayed
in the foreground.
-rw-r--r-- | app/view/stdpage.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/view/stdpage.php b/app/view/stdpage.php index 7ba718d..95fb530 100644 --- a/app/view/stdpage.php +++ b/app/view/stdpage.php @@ -149,8 +149,7 @@ require_once "view/settings.php"; <script type="text/javascript"> $(".issueListItem").click(function () { - //$(this).data("guid"); - $("#aboutModal").modal("show"); + $("#issueModal-"+$(this).data("guid")).modal("show"); }); function assertconfirm() { |