Lines 1-19
Link Here
|
1 |
[% USE Koha %] |
1 |
[% USE Koha %] |
|
|
2 |
[% SET footerjs = 1 %] |
2 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
[% INCLUDE 'doc-head-open.inc' %] |
3 |
<title>Koha staff client</title> |
4 |
<title>Koha staff client</title> |
4 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/mainpage.css" /> |
5 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/mainpage.css" /> |
5 |
[% INCLUDE 'doc-head-close.inc' %] |
6 |
[% INCLUDE 'doc-head-close.inc' %] |
6 |
<style type="text/css"> </style> |
|
|
7 |
<script type="text/javascript"> |
8 |
//<![CDATA[ |
9 |
var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this news item? This cannot be undone."); |
10 |
$(document).ready(function(){ |
11 |
$(".news_delete").on("click", function(){ |
12 |
return confirmDelete(MSG_CONFIRM_DELETE); |
13 |
}); |
14 |
}); |
15 |
//]]> |
16 |
</script> |
17 |
</head> |
7 |
</head> |
18 |
<body id="main_intranet-main" class="main"> |
8 |
<body id="main_intranet-main" class="main"> |
19 |
[% INCLUDE 'header.inc' %] |
9 |
[% INCLUDE 'header.inc' %] |
Lines 200-204
var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this news item? This
Link Here
|
200 |
</div> |
190 |
</div> |
201 |
</div> |
191 |
</div> |
202 |
|
192 |
|
|
|
193 |
[% MACRO jsinclude BLOCK %] |
194 |
<script type="text/javascript"> |
195 |
//<![CDATA[ |
196 |
var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this news item? This cannot be undone."); |
197 |
$(document).ready(function(){ |
198 |
$(".news_delete").on("click", function(){ |
199 |
return confirmDelete(MSG_CONFIRM_DELETE); |
200 |
}); |
201 |
}); |
202 |
//]]> |
203 |
</script> |
204 |
[% END %] |
203 |
<!-- the main div is closed in intranet-bottom.inc --> |
205 |
<!-- the main div is closed in intranet-bottom.inc --> |
204 |
[% INCLUDE 'intranet-bottom.inc' %] |
206 |
[% INCLUDE 'intranet-bottom.inc' %] |
205 |
- |
|
|