Sha256: e5ffdca8f1361dfeb6605d6c0532d777298169e95aec7e2c8e3dd3f4329a267e

Contents?: true

Size: 668 Bytes

Versions: 102

Compression:

Stored size: 668 Bytes

Contents

# Fade out cocoon remove.
$(document).on 'cocoon:before-remove', (event, $obj) ->
  $button = $(event.currentTarget.activeElement)

  confirm = ($button.data('confirm') || '').length > 0
  confirmed = $button.data('confirmed') || false

  if confirm && !confirmed
    event.preventDefault()
  else if $button.data('skip-fadeout')
    # Nothing to do
  else
    $(event.target).data('remove-timeout', 1000)
    $obj.fadeOut('slow')

# Open all external trix links in a new window.
$(document).on 'click', '.trix-content a', (event) ->
  obj = event.currentTarget

  if obj.host != window.location.host && !obj.isContentEditable
    obj.setAttribute('target', '_blank')

Version data entries

102 entries across 102 versions & 1 rubygems

Version Path
effective_bootstrap-1.19.13 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.12 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.11 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.10 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.9 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.8 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.7 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.6 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.5 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.4 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.3 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.2 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.1 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.19.0 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.18.7 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.18.4 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.18.3 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.18.2 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.18.1 app/assets/javascripts/effective_bootstrap/other.js.coffee
effective_bootstrap-1.18.0 app/assets/javascripts/effective_bootstrap/other.js.coffee