From 53ce8f3304eac0208b98772c9124c718f0d6a30c Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Fri, 10 Aug 2018 14:50:46 +0200 Subject: [PATCH] Attempt to fix sessionvotes rendering The .live function was removed in jQuery 1.9, causing the sessions list to not display as it's rendered hidden. This is a mostly blind attempt at fixing the issue. --- template/confreg/sessionvotes.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/confreg/sessionvotes.html b/template/confreg/sessionvotes.html index 4663e0f..c07c32e 100644 --- a/template/confreg/sessionvotes.html +++ b/template/confreg/sessionvotes.html @@ -30,7 +30,7 @@ $(function() { resizable: false, minWidth: 350, }); - $('#dlgComment').live('keyup', function(e){ + $(document).on('keyup', '#dlgComment', function(e){ if (e.keyCode == 13) { $(':button:contains("Save")').click(); } -- 2.39.5