Sha256: f5f6b3a1163ac6bced73efcb03cad1a857fa1b09663617bcd5bfc8023fd392b7

Contents?: true

Size: 319 Bytes

Versions: 3

Compression:

Stored size: 319 Bytes

Contents

ready = ->
  # This applies to all hyperlinks, except:
  # - links that open popovers
  #
  $("a:not(.has_popover)").click ->
    link_host = @href.split("/")[2]
    document_host = document.location.href.split("/")[2]
    unless link_host is document_host
      window.open @href
      false

$(document).ready(ready)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
your_platform-1.0.1 app/assets/javascripts/your_platform/links_to_external_sites.js.coffee
your_platform-1.0.0 app/assets/javascripts/your_platform/links_to_external_sites.js.coffee
your_platform-0.0.2 app/assets/javascripts/your_platform/links_to_external_sites.js.coffee