Dylan190774

Results 7 comments of Dylan190774

It's a Scrabble like word-game. I have an array `letters` that hold the position, size and letter. ``` {{ letter.letter }} ``` In `onTouchend` I decide if the letter is...

I made a simplified [example](https://codesandbox.io/s/01mmv9kr3v) The tile can be dragged, and when you click the button it is moved to a new location. But this only works once. Is there...

Thanks for taking the trouble to help me with this. Eventually of course I don't want to use the buttons. The return of the tile to the rack should happen...

Could you please respond to my other question about the `dragstop` event in touch-mode (#37) ? If I could catch the moment the dragging stops in touch mode, I think...

I agree, but with many frameworks like Quasar, Webpack is the default build-method. Quasar will change to Vite soon, by the way. Don't know if that makes a difference :)

My `gulp`file looks something like this : ``` gulp.task('bust_css', ['css_build'], function() { return gulp.src([ 'public/css/**/*.css' ]) .pipe(bust('busters.json')) .pipe(gulp.dest('public')); }); gulp.task('bust_js', ['js_build'], function() { return gulp.src([ 'public/js/**/*.js' ]) .pipe(bust('busters.json')) .pipe(gulp.dest('public')); });...

Yeah, I guess the second would override previous declared values. However, I want to combine different sections into one file, and will not override values anyway.