Description: In can-define/list/list.js, the offKeyValue function creates a new function and then attempts to remove it from the event handler, which of course will never do anything. It needs to track the one created by onKeyValue a few lines up and remove that, in this case.
How often can you reproduce it?
Description: In can-define/list/list.js, the
offKeyValue
function creates a new function and then attempts to remove it from the event handler, which of course will never do anything. It needs to track the one created byonKeyValue
a few lines up and remove that, in this case.