Santa Fe Institute Collaboration Platform

Thermodynamics of Computation

Difference between revisions of "MediaWiki:Common.js"

From Thermodynamics of Computation
Line 1: Line 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
$('li.pseudo-button input[checked="checked"]').parent().css('font-weight','bold').css('color','#36c');
 
  
 
$(document).ready(function() {
 
$(document).ready(function() {
 
     runQueryOnABCChange()
 
     runQueryOnABCChange()
 +
    $('.pseudo-button input[checked="checked"]').parent().css('font-weight','bold').css('color','#36c');
 
});
 
});
  

Revision as of 11:23, November 30, 2018

/* Any JavaScript here will be loaded for all users on every page load. */

$(document).ready(function() {
    runQueryOnABCChange()
    $('.pseudo-button input[checked="checked"]').parent().css('font-weight','bold').css('color','#36c');
});

function runQueryOnABCChange(){
  $('input[name="Reference Material Query ABC[index]"], input[name="Reference Material Query[index]"]').each(function(){
        $(this).on('change', function() {
        var $form = $(this).closest('form');
        $form.find('input[type=submit]').click();
     });
  });
}