NIHVIVO-2280: Delete function in main account page wasn't working. It has been fixed.
This commit is contained in:
parent
d5f425b7a6
commit
d73c30673a
2 changed files with 10 additions and 8 deletions
|
@ -1,12 +1,13 @@
|
||||||
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
||||||
|
|
||||||
$(document).ready(function(){
|
// Change form actions in account main page
|
||||||
|
function changeAction(form, url) {
|
||||||
|
form.action = url;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// Change form actions in account main page
|
|
||||||
function changeAction(form, url) {
|
$(document).ready(function(){
|
||||||
form.action = url;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Accounts per page
|
//Accounts per page
|
||||||
//Hide is javascrip is enable
|
//Hide is javascrip is enable
|
||||||
|
|
|
@ -196,7 +196,8 @@
|
||||||
<span>| <a href="#">n</a> accounts | </span>
|
<span>| <a href="#">n</a> accounts | </span>
|
||||||
|
|
||||||
<#assign counts = [25, 50, 100]>
|
<#assign counts = [25, 50, 100]>
|
||||||
<select name="accountsPerPage" class="accounts-per-page-bottom">
|
|
||||||
|
<select name="accountsPerPage" class="accounts-per-page">
|
||||||
<#list counts as count>
|
<#list counts as count>
|
||||||
<option value="${count}" <#if accountsPerPage= count>selected</#if> >${count}</option>
|
<option value="${count}" <#if accountsPerPage= count>selected</#if> >${count}</option>
|
||||||
</#list>
|
</#list>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue