From 526d8395e11ad51bf485bd6f8d70d87d3725f215 Mon Sep 17 00:00:00 2001 From: DavidKevork Date: Mon, 6 Nov 2017 18:51:27 +1100 Subject: [PATCH] fixed issue with model --- brainwallet.smartcash.cc.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/brainwallet.smartcash.cc.html b/brainwallet.smartcash.cc.html index ee3dd5c..95b4f2a 100644 --- a/brainwallet.smartcash.cc.html +++ b/brainwallet.smartcash.cc.html @@ -7231,14 +7231,14 @@ if (HasReadWarning !== "yes") { } span.onclick = function() { toggleClass(modal, 'fade-out'); - /*modal.style.display = "none";*/ + setTimeout(function(){ modal.style.display = "none"; }, 1000); setCookie('read', 'yes', 365); } window.onclick = function(event) { if (event.target == modal) { toggleClass(modal, 'fade-out'); - /*modal.style.display = "none";*/ + setTimeout(function(){ modal.style.display = "none"; }, 1000); setCookie('read', 'yes', 365); } }