Commit e17eb15cdf32aa915036d45550e7b35623d99764

Authored by Gustavo Bernardo
1 parent 1a257048

Fixed padronization issue [Issue:#402,#403]

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
links/templates/links/create_link.html
... ... @@ -58,14 +58,14 @@
58 58 $('#requisicoes_ajax').empty();
59 59 $('#list-topic{{ topic.id }}-links').append(data);
60 60 $('#list-topic{{ topic.id }}-links-edit').append(data);
61   - alertify.alert('Link successfully created!')
  61 + alertify.success('Link successfully created!');
62 62 },
63 63 error: function(data){
64 64 $("div.modal-backdrop.fade.in").remove();
65 65 $('#requisicoes_ajax').empty();
66 66 $('#requisicoes_ajax').append(data.responseText);
67 67 $('#createLinksModal').modal('show');
68   - alertify.alert('Invalid link, insert a valid one!');
  68 + alertify.error('Invalid link, insert a valid one!');
69 69 }
70 70 });
71 71 event.preventDefault();
... ...