Compare commits

...

1 Commits

Author SHA1 Message Date
Joe Cheng
bf390a83dd Experiment with removing debounce from slider 2024-03-13 16:51:37 -07:00
5 changed files with 7 additions and 15 deletions

View File

@@ -9094,11 +9094,7 @@
}, {
key: "getRatePolicy",
value: function getRatePolicy(el) {
return {
policy: "debounce",
delay: 250
};
el;
return null;
}
}, {
key: "getState",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -259,11 +259,7 @@ class SliderInputBinding extends TextInputBindingBase {
}
}
getRatePolicy(el: HTMLElement): { policy: "debounce"; delay: 250 } {
return {
policy: "debounce",
delay: 250,
};
el;
return null as any;
}
// TODO-barret Why not implemented?
getState(el: HTMLInputElement): void {