NIHVIVO-2280: Removed .hide class since we have .hidden in VITRO.

This commit is contained in:
manolobevia 2011-06-28 18:37:44 +00:00
parent a7c271a9bd
commit 5b3c113ccc
2 changed files with 7 additions and 10 deletions

View file

@ -1,16 +1,16 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
// Change form actions in account main page
function changeAction(form, url) {
form.action = url;
return true;
}
$(document).ready(function(){
// Change form actions in account main page
function changeAction(form, url) {
form.action = url;
return true;
}
//Accounts per page
//Hide is javascrip is enable
$('input[name="accounts-per-page"]').addClass('hide');
$('input[name="accounts-per-page"]').addClass('hidden');
$('.accounts-per-page').change(function() {
$('#account-display').submit();