Lines 436-442
function AddEventHandlers (oldcontrol, newcontrol, newinputid ) {
Link Here
|
436 |
// newinputid is the id attribute of the cloned controlling input field |
436 |
// newinputid is the id attribute of the cloned controlling input field |
437 |
// Note: This code depends on the jQuery data for events; this structure |
437 |
// Note: This code depends on the jQuery data for events; this structure |
438 |
// is moved to _data as of jQuery 1.8. |
438 |
// is moved to _data as of jQuery 1.8. |
439 |
var ev= $(oldcontrol).data('events'); |
439 |
var ev = $._data(oldcontrol, "events"); |
440 |
if(typeof ev != 'undefined') { |
440 |
if(typeof ev != 'undefined') { |
441 |
$.each(ev, function(prop,val) { |
441 |
$.each(ev, function(prop,val) { |
442 |
$.each(val, function(prop2,val2) { |
442 |
$.each(val, function(prop2,val2) { |
443 |
- |
|
|