From 0d6371f6eb072f7e6e902a78ecad2824b4323f1c Mon Sep 17 00:00:00 2001 From: Hanzei Date: Sun, 1 Jul 2018 13:08:26 +0200 Subject: Remove updlicate ids --- static/js/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'static') diff --git a/static/js/index.js b/static/js/index.js index 847d6a4..195ad57 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -10,10 +10,10 @@ $('a[href^="#"]').click(function(e) { // Modal closer $('.card').click(function () { - $('#'+this.id+'.modal').addClass('is-active'); + $($(this).attr('data-target')).addClass('is-active'); }); $('.modal-close').click(function () { - $('#'+$(this).parent('.modal').get(0).id+'.modal').removeClass('is-active'); + $($(this).attr('data-target')).removeClass('is-active'); }); $(document).keypress(function(e) { if(e.which == 0) { -- cgit v1.2.3