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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/parcel.tt (-1 / +1 lines)
Lines 640-646 Link Here
640
                        "searchable": false
640
                        "searchable": false
641
                    }
641
                    }
642
                ]
642
                ]
643
            }, {}, 1, {"basket.vendor_id": [% booksellerid | html %]});
643
            }, null, 1, {"basket.vendor_id": [% booksellerid | html %]});
644
644
645
            $(".previewData").on("click", function(e){
645
            $(".previewData").on("click", function(e){
646
                e.preventDefault();
646
                e.preventDefault();
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt (-1 / +1 lines)
Lines 383-389 Link Here
383
                        $(row).addClass('debug');
383
                        $(row).addClass('debug');
384
                    }
384
                    }
385
                },
385
                },
386
            });
386
            }, null, 0);
387
387
388
            $('#smtp_servers').on( "click", '.delete_server', function () {
388
            $('#smtp_servers').on( "click", '.delete_server', function () {
389
                var smtp_server_id   = $(this).data('smtp-server-id');
389
                var smtp_server_id   = $(this).data('smtp-server-id');
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/register.tt (-1 / +1 lines)
Lines 460-466 Link Here
460
                    "orderable": false
460
                    "orderable": false
461
                }
461
                }
462
            ]
462
            ]
463
        }, [], 1);
463
        }, null, 1);
464
    </script>
464
    </script>
465
[% END %]
465
[% END %]
466
466
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-2 / +1 lines)
Lines 213-219 Link Here
213
                        "orderable": false
213
                        "orderable": false
214
                    },
214
                    },
215
                ]
215
                ]
216
            });
216
            }, undef, 0);
217
217
218
            $('#quotes').on( "click", '.delete_quote', function () {
218
            $('#quotes').on( "click", '.delete_quote', function () {
219
                var quote_id   = decodeURIComponent($(this).data('quote-id'));
219
                var quote_id   = decodeURIComponent($(this).data('quote-id'));
220
- 

Return to bug 31435