Commit e17eb15cdf32aa915036d45550e7b35623d99764
1 parent
1a257048
Exists in
master
and in
5 other branches
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,14 +58,14 @@ | ||
58 | $('#requisicoes_ajax').empty(); | 58 | $('#requisicoes_ajax').empty(); |
59 | $('#list-topic{{ topic.id }}-links').append(data); | 59 | $('#list-topic{{ topic.id }}-links').append(data); |
60 | $('#list-topic{{ topic.id }}-links-edit').append(data); | 60 | $('#list-topic{{ topic.id }}-links-edit').append(data); |
61 | - alertify.alert('Link successfully created!') | 61 | + alertify.success('Link successfully created!'); |
62 | }, | 62 | }, |
63 | error: function(data){ | 63 | error: function(data){ |
64 | $("div.modal-backdrop.fade.in").remove(); | 64 | $("div.modal-backdrop.fade.in").remove(); |
65 | $('#requisicoes_ajax').empty(); | 65 | $('#requisicoes_ajax').empty(); |
66 | $('#requisicoes_ajax').append(data.responseText); | 66 | $('#requisicoes_ajax').append(data.responseText); |
67 | $('#createLinksModal').modal('show'); | 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 | event.preventDefault(); | 71 | event.preventDefault(); |