From 37b4d12e3039413b6b650a91314a8af69d7e7abe Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Sun, 20 Jul 2014 16:40:56 +0200 Subject: [PATCH] bugfix --- teleforma/templates/teleforma/seminar_detail.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/teleforma/templates/teleforma/seminar_detail.html b/teleforma/templates/teleforma/seminar_detail.html index 448d71f3..1dbcb025 100644 --- a/teleforma/templates/teleforma/seminar_detail.html +++ b/teleforma/templates/teleforma/seminar_detail.html @@ -51,7 +51,8 @@ var seminarUtils = { p.removeClass('icon_ok').addClass('icon_delete'); p.html('{% trans " rejected" %}'); }); - } + }, + load : function(id, username){ json([id, username],'teleforma.seminar_load',function(){ return false; @@ -59,7 +60,7 @@ var seminarUtils = { }, unload : function(id, username){ - json([id], [username],'teleforma.seminar_unload',function(){ + json([id, username],'teleforma.seminar_unload',function(){ return false; }); }, -- 2.39.5