Sha256: b4a2915777cf3fed4be90d74790e29771e57495a151ef936c3f73ff8647620aa

Contents?: true

Size: 748 Bytes

Versions: 22

Compression:

Stored size: 748 Bytes

Contents

#carnival-modal
  .close-modal{:onclick => 'closeModal()'}
    = 'Fechar'
  #carnival-modal-content

:javascript
  
  function showModalOverlay(){
    $('body').append("<div class='carnival-modal-overlay'></div>");
    $('.carnival-modal-overlay').fadeIn(300);
    $('.carnival-modal-overlay').click(function(){
      closeModal();
    });
  }

  function removeModalOverlay(){
    $('.carnival-modal-overlay').fadeOut(300);
    setTimeout(function(){
      $('.carnival-modal-overlay').remove();
    }, 3000)
  }

  function showModal(){
    if(!$('.carnival-modal-overlay').length)
      showModalOverlay();
    $('#carnival-modal').fadeIn(300);
  }

  function closeModal(){
    $('#carnival-modal').fadeOut(300);
    removeModalOverlay();

  }

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
carnival-0.3.2 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.3.1 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.3.0 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.8 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.7 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.6 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.5 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.4 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.3 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.10 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.2 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.1 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.2.0 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.9 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.8 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.7 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.6 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.5 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.3 app/views/carnival/shared/_application_modal_partial.html.haml
carnival-0.1.2 app/views/carnival/shared/_application_modal_partial.html.haml