diff --git a/webapp/web/css/account/account.css b/webapp/web/css/account/account.css index 0af6660cf..bad07ca2c 100644 --- a/webapp/web/css/account/account.css +++ b/webapp/web/css/account/account.css @@ -89,9 +89,6 @@ section.accounts .delete-account{ float: left; font-size: .875em; } -.hide { - display: none; -} .accounts-per-page-form { display: inline-block; } diff --git a/webapp/web/js/account/accountUtils.js b/webapp/web/js/account/accountUtils.js index 786ea38c9..906f332da 100644 --- a/webapp/web/js/account/accountUtils.js +++ b/webapp/web/js/account/accountUtils.js @@ -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();