Bug 13400 [QA Followup] - Fix tabs and quotes
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
This commit is contained in:
parent
8523f208f3
commit
5d6d9de5e7
2 changed files with 5 additions and 5 deletions
|
@ -32,10 +32,10 @@
|
|||
});
|
||||
|
||||
function confirm_deletion() {
|
||||
var is_confirmed = confirm(_('Are you sure you want to delete this authority?'));
|
||||
if (is_confirmed) {
|
||||
window.location="authorities-home.pl?op=delete&authid=[% authid %]";
|
||||
}
|
||||
var is_confirmed = confirm(_("Are you sure you want to delete this authority?"));
|
||||
if (is_confirmed) {
|
||||
window.location="authorities-home.pl?op=delete&authid=[% authid %]";
|
||||
}
|
||||
}
|
||||
function Dopop(link) {
|
||||
newin=window.open(link,'width=500,height=400,toolbar=false,scrollbars=yes');
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<script type="text/javascript" >
|
||||
//<![CDATA[
|
||||
function confirm_deletion(id) {
|
||||
var is_confirmed = confirm(_('Are you sure you want to delete this authority?'));
|
||||
var is_confirmed = confirm(_("Are you sure you want to delete this authority?"));
|
||||
if (is_confirmed) {
|
||||
window.location="authorities-home.pl?op=delete"
|
||||
+ "&authid=" + id
|
||||
|
|
Loading…
Reference in a new issue