Commit 00b3037726a62cc5f764bf99406dc17948726215

Authored by Gustavo Bernardo
1 parent e6034fe7

creating static files for links and adding links.js [Issue: #126]

Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
links/static/links.js 0 → 100644
... ... @@ -0,0 +1,9 @@
  1 +function get_modal_link(url, id,div_content){
  2 + $.get(url, function (data) {
  3 + //alert(data);
  4 + // $(div_content).empty();
  5 + // $(div_content).append(data);
  6 + $(id).modal('show');
  7 + });
  8 +
  9 +}
... ...