updating the onclick function for the forum author name link so that there is
authorAnthony Talarico <talarico@gaslightmedia.com>
Fri, 20 Jan 2017 21:46:15 +0000 (16:46 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Fri, 20 Jan 2017 21:46:15 +0000 (16:46 -0500)
no text decoration after clicking an author's name below the post title

js/app.js
js/custom/pageSetup.js

index 9daf9a8..1d0146d 100644 (file)
--- a/js/app.js
+++ b/js/app.js
@@ -48,6 +48,7 @@ $(document).ready(function () {
         var author_link =  page.find(".bbp-author-name");
         
         author_link.on("click", function(e){
+            $(this).css('text-decoration', 'none');
             e.preventDefault();
             console.log(e);
         });
index 9f7655d..4cce861 100644 (file)
@@ -38,6 +38,7 @@ $(document).ready(function () {
         var author_link =  page.find(".bbp-author-name");
         
         author_link.on("click", function(e){
+            $(this).css('text-decoration', 'none');
             e.preventDefault();
             console.log(e);
         });