You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by se...@apache.org on 2015/03/10 18:32:56 UTC

svn commit: r1665629 - /ctakes/site/trunk/content/people.mdtext

Author: seanfinan
Date: Tue Mar 10 17:32:56 2015
New Revision: 1665629

URL: http://svn.apache.org/r1665629
Log:
Attempting auto-population of list using https://projects-new.apache.org/json/foundation/committers.json

Modified:
    ctakes/site/trunk/content/people.mdtext

Modified: ctakes/site/trunk/content/people.mdtext
URL: http://svn.apache.org/viewvc/ctakes/site/trunk/content/people.mdtext?rev=1665629&r1=1665628&r2=1665629&view=diff
==============================================================================
--- ctakes/site/trunk/content/people.mdtext (original)
+++ ctakes/site/trunk/content/people.mdtext Tue Mar 10 17:32:56 2015
@@ -45,7 +45,7 @@
 
 <!-- show enlarged image -->
 <script type="text/javascript">
-
+$(document).ready( function() {
    $.getJSON( "https://projects-new.apache.org/json/foundation/committers.json",
       function( data ) {
          var persons = [];
@@ -56,5 +56,5 @@
          persons.push( "</ul>" );
          $( "#people-names" ).append( persons.join( "" ) );
       });
-
+});
 </script>