-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathallnotes.php
More file actions
30 lines (26 loc) · 1.06 KB
/
Copy pathallnotes.php
File metadata and controls
30 lines (26 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!-- The Modal for listing users who liked posts-->
<div class="modal createposts rounded-0" id="<?php echo("xx".$post_unique_id)?>">
<div class="modal-dialog">
<div method="POST" id="formpost" class="modal-content border-0 rounded-0 shadow">
<div class="modal-header ">
<h4 class="modal-title text-decoration-underline">Notes this post<small></small></h4>
<hr>
<button type="button" class="close" id="<?php echo("xxx".$post_unique_id)?>" data-dismiss="modal">×</button>
</div>
<div class="modal-body">
<?php require"c_php/allnotes.php"?>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("#<?php echo("xx".$post_unique_id)?>").hide();
$("#<?php echo("morenotes".$post_unique_id)?>").click(function(){
$("#<?php echo("xx".$post_unique_id)?>").show();
});
$("#<?php echo("xxx".$post_unique_id)?>").click(function () {
$("#<?php echo("xx".$post_unique_id)?>").hide();
});
});
</script>