From 156a114bd50558beec0ec75e1570c7d04be08eea Mon Sep 17 00:00:00 2001 From: james Date: Wed, 6 Jul 2011 11:45:34 -0400 Subject: [PATCH] CC-2507:Deleting a playlist during edting does not refresh the page - fixed --- airtime_mvc/public/js/airtime/library/spl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/library/spl.js b/airtime_mvc/public/js/airtime/library/spl.js index bba0ffb58..4f22f29e9 100644 --- a/airtime_mvc/public/js/airtime/library/spl.js +++ b/airtime_mvc/public/js/airtime/library/spl.js @@ -405,8 +405,8 @@ function deleteSPL() { url = '/Playlist/delete-active/format/json'; - $.post(url, function(){ - noOpenPL; + $.post(url, function(json){ + noOpenPL(json); //redraw the library list redrawDataTablePage(); });