Commit d1faae5544aef080352d1ddc3e9fef8c2b6547ec

Authored by Gustavo Bernardo
1 parent 8be61190

Links js moved to the right place [Issue:#126]

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