Skip to content
Snippets Groups Projects
Commit b71578d6 authored by Jeff Sturek's avatar Jeff Sturek
Browse files

Add back _blank functionality removed recently

parent 3674d8b2
No related branches found
No related tags found
1 merge request!22Add back _blank functionality removed recently
......@@ -48,7 +48,15 @@ define(['jquery', 'analytics'], function ($, analytics) {
this._viewState = 0;
this._renderTo = cntSel;
};
$(function() {
$(cntSel).on('click', '.fn a', function() {
if (this.target !== '_blank') {
this.target = '_blank';
}
});
});
};
Directory.prototype._render = function(data) {
if (this._searchCanceled) {
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment