View | Details | Raw Unified | Return to bug 22124
Collapse All | Expand All

(-)a/Koha/FrameworkPlugin.pm (-4 / +1 lines)
Lines 376-383 sub _merge_script { Link Here
376
    my ( $id, $script, $bind ) = @_;
376
    my ( $id, $script, $bind ) = @_;
377
    chomp ($script, $bind);
377
    chomp ($script, $bind);
378
    return <<HERE;
378
    return <<HERE;
379
<script type="text/javascript">
379
<script>
380
//<![CDATA[
381
$script
380
$script
382
function BindEvents$id() {
381
function BindEvents$id() {
383
$bind
382
$bind
Lines 385-391 $bind Link Here
385
\$(document).ready(function() {
384
\$(document).ready(function() {
386
    BindEvents$id();
385
    BindEvents$id();
387
});
386
});
388
//]]>
389
</script>
387
</script>
390
HERE
388
HERE
391
}
389
}
392
- 

Return to bug 22124