@jsyg/selection
v1.0.0
Published
Mouse selection plugin for JSYG framework
Maintainers
Readme
@jsyg/selection
Mouse selection plugin for JSYG framework
Demo
http://yannickbochatay.github.io/jsyg-monorepo/docs/selection
Installation
npm install @jsyg/selectionUsage
import Selection from "@jsyg/selection"
let selectArea = new Selection("#myContainer");
selectArea.enable({
list : ".selectable",
onselectedlist : function(e,liste) {
console.log(liste.length+" elements selected");
}
});