all files / ui/ DragAndDropHandler.js

0% Statements 0/2
100% Branches 0/0
0% Functions 0/3
0% Lines 0/2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18                                   
class DragAndDropHandler {
 
  match(dragState, context) { // eslint-disable-line
    return false
  }
 
  drop(dragState, context) { // eslint-disable-line
    // nothing
  }
 
  get _isDragAndDropHandler() {
    return true
  }
 
}
 
export default DragAndDropHandler