From 197a41bfd818893628758daaa238e2f7ab1224ad Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Fri, 19 May 2017 10:49:15 +0200 Subject: [PATCH] Changed confirmation text when successfull response from api. --- webpage/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpage/js/main.js b/webpage/js/main.js index 089491a..ec739bb 100644 --- a/webpage/js/main.js +++ b/webpage/js/main.js @@ -27,7 +27,7 @@ $("#searchForm").submit(function(e) { url: url, type: 'POST', success: function (data) { - Materialize.toast('Verification successfully sent!', 4000); + Materialize.toast('Episode successfully verified and moved!', 4000); }, error: function(data) { Materialize.toast(data.responseJSON.error, 4000);