diff options
-rw-r--r-- | data/assets/js/admin/tabs/posts.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/data/assets/js/admin/tabs/posts.js b/data/assets/js/admin/tabs/posts.js index f2e082d..1cabc31 100644 --- a/data/assets/js/admin/tabs/posts.js +++ b/data/assets/js/admin/tabs/posts.js @@ -65,7 +65,6 @@ jQuery(function($) { "href='%{post_url|h}' ", "class='link' ", "title='View link \"%{post_url|h}\".' ", - "target='_blank' ", ">", "%{post_url|h}", "</a>", @@ -223,7 +222,7 @@ jQuery(function($) { }); $('#posts').on('click', 'a.link', function() { - location.href = $(this).attr('href'); + open($(this).attr('href')); // stop event return false; |