member profile update
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 22 Aug 2013 20:17:20 +0000 (20:17 +0000)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 22 Aug 2013 20:17:20 +0000 (20:17 +0000)
update the full-text css to overflow visible

Toolkit/Members/templates/memberDetail.tpl

index fc723f6..7a39018 100644 (file)
@@ -14,6 +14,7 @@
 
 .full-text{
     height: auto;
+    overflow: visible;
 }
 </style>
 <flexy:toJavascript
@@ -159,14 +160,9 @@ $(document).ready(function() {
         var $link = $(this);
         var $content = $link.parent().prev("div.text-content");
 
-        console.log($link);
-
         var visibleHeight = $content[0].clientHeight;
         var actualHide = $content[0].scrollHeight - 1;
 
-        console.log(actualHide);
-        console.log(visibleHeight);
-
         if (actualHide > visibleHeight) {
             $link.show();
         } else {