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

(-)a/koha-tmpl/intranet-tmpl/prog/js/cataloging.js (-2 / +1 lines)
Lines 434-440 function AddEventHandlers (oldcontrol, newcontrol, newinputid ) { Link Here
434
// newinputid is the id attribute of the cloned controlling input field
434
// newinputid is the id attribute of the cloned controlling input field
435
// Note: This code depends on the jQuery data for events; this structure
435
// Note: This code depends on the jQuery data for events; this structure
436
// is moved to _data as of jQuery 1.8.
436
// is moved to _data as of jQuery 1.8.
437
    var ev= $(oldcontrol).data('events');
437
    var ev = $._data(oldcontrol, "events");
438
    if(typeof ev != 'undefined') {
438
    if(typeof ev != 'undefined') {
439
        $.each(ev, function(prop,val) {
439
        $.each(ev, function(prop,val) {
440
            $.each(val, function(prop2,val2) {
440
            $.each(val, function(prop2,val2) {
441
- 

Return to bug 33744