NIHVIVO-2280: Removed .hide class since we have .hidden in VITRO.
This commit is contained in:
parent
a7c271a9bd
commit
5b3c113ccc
2 changed files with 7 additions and 10 deletions
|
@ -89,9 +89,6 @@ section.accounts .delete-account{
|
|||
float: left;
|
||||
font-size: .875em;
|
||||
}
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
.accounts-per-page-form {
|
||||
display: inline-block;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue