Newer
Older
dmpopidor / lib / assets / javascripts / orgs / shibboleth_ds.js
@briley briley on 9 Jun 2017 333 bytes updates to shib-ds css and js
$(document).ready(function(){
  $("#show_list").click(function(e){
    e.preventDefault();
    if($("#full_list").css("display") == "none"){
      $("#full_list").show();
      $(this).html(__('Hide list'));
    }else{
      $("#full_list").hide();
      $(this).html(__('See the full list of partner institutions'));
    }
  });
});