Remove knockout evaluatorFunctionTarget

Drop deprecated knockout throttle extender
Added knockout debounce extender
This commit is contained in:
djmaze 2021-02-10 11:33:36 +01:00
parent b9b0a550d6
commit 75b7176ada
15 changed files with 158 additions and 226 deletions

View file

@ -1,5 +1,5 @@
ko.computedContext = ko.dependencyDetection = (() => {
ko.dependencyDetection = (() => {
var outerFrames = [],
currentFrame,
lastId = 0,
@ -38,10 +38,6 @@ ko.computedContext = ko.dependencyDetection = (() => {
return currentFrame && currentFrame.computed.getDependenciesCount();
},
getDependencies: () => {
return currentFrame && currentFrame.computed.getDependencies();
},
isInitial: () => {
return currentFrame && currentFrame.isInitial;
},