Modal window appears once

0

I'm having trouble making the modal window look just once.

No JS

test("modal shows up", function() {
  equal($('.sweet-alert').length, 0);

  swal({
  title: "Amigo da FAST FUSO<br>ATENÇÃO!",
  text: "Estamos sofrendo com um grande problema de comunicação.<br>Estamos com problemas em nosso tronco-chave da VIVO, dificultando muito a comunicação com vocês. <br>(SEM PREVISÃO DE CONCERTO POR PARTE DA VIVO)<br> Durante este processo informamos telefones que estão funcionando enquanto não regularizamos a situação de nosso troco-chave.<br> TELEFONES DE CONTATO:<br>(11) 3409-3675<br> (11) 2884-8410 <br>(11) 3409-2805<br>(11) 3405-0932 <br>(11) 3405-0542<br> e-mail de contato: [email protected]<br> Agradecemos a ajuda e compreensão de todos.", 
  html: true
});

  ok($('.sweet-alert').is(':visible'));

});

In CSS

body.stop-scrolling {   height: 100%;   overflow: hidden; }

.sweet-overlay {   background-color: black;   /* IE8 */   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";   /* IE8 */   background-color: rgba(0, 0, 0, 0.4);   position: fixed;   left: 0;   right: 0;   top: 0;   bottom: 0;   display: none;   z-index: 10000; }

.sweet-alert {   background-color: white;   font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;   width: 800px;   padding: 17px;   border-radius: 5px;   text-align: center;   position: fixed;   left: 50%;   top: 50%;   margin-left: -400px;   margin-top:
-200px;   overflow: hidden;   display: none;   z-index: 99999; }
    
asked by anonymous 11.01.2017 / 13:58

0 answers