Created
September 11, 2013 11:03
-
-
Save dvdsmpsn/6522097 to your computer and use it in GitHub Desktop.
Confluence User Macro: Open links in new window
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Macro title: Open links in new window | |
## Macro key: open-links-in-new-window | |
## Macro has a body: N | |
## Body processing: n/a | |
## Output: HTML | |
## | |
## Developed by: David Simpson | |
## Date created: 2012-08-26 | |
## Installed by: David Simpson | |
## Opens links in a new window | |
## @param Selector:title=CSS Selector|type=string|required=false|desc=Defaults to .wiki-content, but you could be more specific | |
#set ( $selector = '.wiki-content') | |
#if ($paramselector) | |
#set ( $selector = $paramselector) | |
#end | |
<script> | |
AJS.toInit(function ($) { | |
$('$selector').find('a').attr('target', '_blank'); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment