I hereby claim:
- I am hidrees on github.
- I am hidrees (https://keybase.io/hidrees) on keybase.
- I have a public key ASDYvHB5CTxUi31HU8zlHLtbPdLzfqvxh9UksMeW0HsRnAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| //By default, Ghost opens links in the existing tab. Insert this in your Ghost JS file to get all your links to open in a new tab instead! | |
| $('a').each(function() { | |
| var a = new RegExp('/' + window.location.host + '/'); | |
| if(!a.test(this.href)) { | |
| $(this).click(function(event) { | |
| event.preventDefault(); | |
| event.stopPropagation(); | |
| window.open(this.href, '_blank'); | |
| }); | |
| } |