Commit e14046bdb935ce4ba7a5c5723c0817fa2251a45a
1 parent
609bd896
Exists in
master
and in
5 other branches
Fixing js [Issue:#126]
Showing
1 changed file
with
2 additions
and
3 deletions
Show diff stats
links/static/links.js
| 1 | function get_modal_link(url, id,div_content){ | 1 | function get_modal_link(url, id,div_content){ |
| 2 | $.get(url, function (data) { | 2 | $.get(url, function (data) { |
| 3 | - //alert(data); | ||
| 4 | - // $(div_content).empty(); | ||
| 5 | - // $(div_content).append(data); | 3 | + $(div_content).empty(); |
| 4 | + $(div_content).append(data); | ||
| 6 | $(id).modal('show'); | 5 | $(id).modal('show'); |
| 7 | }); | 6 | }); |
| 8 | 7 |