Commit e14046bdb935ce4ba7a5c5723c0817fa2251a45a

Authored by Gustavo Bernardo
1 parent 609bd896

Fixing js [Issue:#126]

Showing 1 changed file with 2 additions and 3 deletions   Show diff stats
links/static/links.js
1 1 function get_modal_link(url, id,div_content){
2 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 5 $(id).modal('show');
7 6 });
8 7  
... ...