You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@esme.apache.org by es...@apache.org on 2011/02/13 13:49:29 UTC

svn commit: r1070227 - /esme/trunk/server/src/main/webapp/info_view/contacts.html

Author: esjewett
Date: Sun Feb 13 12:49:28 2011
New Revision: 1070227

URL: http://svn.apache.org/viewvc?rev=1070227&view=rev
Log:
[ESME-286] Last commit fixed this issue on the user pages, but the actual ticket was for the contacts page. This fixes the issue on the contacts page as well.

Modified:
    esme/trunk/server/src/main/webapp/info_view/contacts.html

Modified: esme/trunk/server/src/main/webapp/info_view/contacts.html
URL: http://svn.apache.org/viewvc/esme/trunk/server/src/main/webapp/info_view/contacts.html?rev=1070227&r1=1070226&r2=1070227&view=diff
==============================================================================
--- esme/trunk/server/src/main/webapp/info_view/contacts.html (original)
+++ esme/trunk/server/src/main/webapp/info_view/contacts.html Sun Feb 13 12:49:28 2011
@@ -15,45 +15,42 @@
  KIND, either express or implied.  See the License for the    *
  specific language governing permissions and limitations      *
  under the License.                                           *
--->
+-->    
 
-<lift:surround with="base" at="left">
-    <!-- STYLESHEETS  -->
-    <link type="text/css" href="../style/jqueryui-theme/jquery-ui-1.8.2.custom.css" rel="stylesheet" />
+<lift:surround with="base" at="left">   
+  <head>
+    <lift:TableSorterSnip/><!-- STYLESHEETS  -->
+    <link type="text/css" href="../style/jqueryui-theme/jquery-ui-1.8.2.custom.css" rel="stylesheet" />  
+    <style type="text/css">
+        .actions { display: none; }
+    </style> 
     <script type="text/javascript" src="../scripts/jquery-ui-1.8.2.custom.min.js"></script>
-        <script type="text/javascript" src="../scripts/esme.js"></script>
-<div id="back-header">
-	<h1><lift:loc>base_profile_contacts</lift:loc></h1>
-	<div class="container-settings">
-            <div class="ui-tabs ui-widget ui-widget-content ui-corner-all" id="tabs">
-                <ul class="ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all">
-                    <li class="ui-state-default ui-corner-top ui-tabs-selected ui-state-active">
-                        <a href="#tabs-1"><lift:loc>ui_user_following</lift:loc></a>
-                    </li>
-                    <li class="ui-state-default ui-corner-top">
-                        <a href="#tabs-2"><lift:loc>ui_user_followers</lift:loc></a>
-                    </li>
-                </ul>
-                <div class="ui-tabs-panel ui-widget-content ui-corner-bottom" id="tabs-1">
-                    <dl>
-                        <dd class="b-contacts">
-                          <ul>
-                            <lift:UserSnip.following user:userId=""/>
-                             </ul>
-                        </dd>
-                    </dl>
-                </div>
-                <div class="ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide" id="tabs-2">
-                    <dl>
-                         <dd class="b-contacts" >
-                         <ul>
-                            <lift:UserSnip.followers user:userId=""/>
-                            </ul>
-                        </dd>
-                    </dl>
-                </div>
-            </div>
-	</div>
-	</div>
-	<!-- End demo --> 
+    <script type="text/javascript" src="../scripts/esme_table_sorter.js"></script>
+    <script type="text/javascript" src="../scripts/esme.js"></script>
+  </head>          
+    <div id="back-header">
+    	<h1><lift:loc>base_profile_contacts</lift:loc></h1>                                            
+    </div>      
+  	<div class="container-aux">
+      <div id="tabs" class="user-tabs">
+        <ul>                                                                                     
+          <li><a href="#tabs-1"><lift:loc>ui_user_following</lift:loc></a></li>
+          <li><a href="#tabs-2"><lift:loc>ui_user_followers</lift:loc></a></li>            
+        </ul>        
+        <div id="tabs-1">
+          <dl class="">
+            <dd class="b-contacts">
+              <lift:UserSnip.following user:userId=""/>
+            </dd>
+          </dl>
+        </div>
+        <div id="tabs-2">
+          <dl class="">
+            <dd class="b-contacts">
+              <lift:UserSnip.followers user:userId=""/>
+            </dd>
+          </dl>
+        </div>            
+      </div>
+    </div>               
 </lift:surround>
\ No newline at end of file