Skip to content
Snippets Groups Projects
Commit 74568d88 authored by Naab, Daniel James's avatar Naab, Daniel James
Browse files

Add focus test for cursorSlider

parent e1c01e6b
No related branches found
No related tags found
No related merge requests found
......@@ -93,6 +93,10 @@ const cursorSlider = function (elem) {
.attr('id', 'cursor-slider')
.style('left', MARGIN.left - SLIDER_OFFSET_PX + 'px')
.on('input', dispatch(function () {
console.log('input', this.valueAsNumber);
return Actions.setCursorOffset(this.valueAsNumber);
}))
.on('focus', dispatch(function () {
return Actions.setCursorOffset(this.valueAsNumber);
}))
.on('blur', dispatch(function () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment