10 lines
No EOL
355 B
JavaScript
10 lines
No EOL
355 B
JavaScript
/**
|
|
* Adds both target="_blank" and rel="noopener" to the marked anchor tag.
|
|
* Background on noopener: https://mathiasbynens.github.io/rel-noopener/
|
|
*/
|
|
angular.module('quay').directive('ngSafenewtab', function () {
|
|
return function (scope, element, attr) {
|
|
element.attr('target', '_blank');
|
|
element.attr('rel', 'noopener noreferrer');
|
|
};
|
|
}); |