Browse Source

Merge pull request #22 from thiago0b12/thiago0b12-patch-1

fix: index.js for syntax error
pull/24/head
Aigars Silkalns 8 years ago
committed by GitHub
parent
commit
ed40af1582
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/assets/scripts/utils/index.js

+ 1
- 1
src/assets/scripts/utils/index.js View File

@ -28,7 +28,7 @@ export default (function () {
// Open external links in new window
$('a')
.filter('[href^="http"], [href^="//"]')
.not(`[href*="${window.location.host}"`)
.not(`[href*="${window.location.host}"]`)
.attr('rel', 'noopener noreferrer')
.attr('target', '_blank');


Loading…
Cancel
Save