Newer
Older
dmpopidor / lib / assets / javascripts / orgs / shibboleth_ds.js
@briley briley on 9 Jun 2017 328 bytes added new custom shib ds page
$(document).ready(function(){
  $("#show_list").click(function(e){
    e.preventDefault();
    $("#full_list").show();
    $(this).html(__('Hide list'));
  });
  
  $("#hide_list").click(function(e){
    e.preventDefault();
    $("#full_list").hide();
    $(this).html(__('See the full list of partner institutions'));
  });
});