Skip to content

Instantly share code, notes, and snippets.

View djodonnell's full-sized avatar

David O'Donnell djodonnell

  • Melbourne, Australia
View GitHub Profile
import Controller from '@ember/controller';
import { action } from '@ember/object';
export default class AnimationSimpleDivDrag extends Controller {
// initialise grid properties
dragCardPositionDelta = { dx: 0, dy: 0 };
isDraggingCard = false;
constructor(...args) {
super(...args);