easyui-draganddrop
Version:
Drag and drop elements including a file explorer and a rubbish bin.
18 lines (12 loc) • 317 B
JavaScript
;
const Entry = require('../entry');
class Marker extends Entry {
constructor(selector, name) {
const type = Entry.types.MARKER;
super(selector, name, type);
}
static fromProperties(Class, properties) {
return Entry.fromProperties(Class, properties);
}
}
module.exports = Marker;