shaunxcode / marquee

marquee selection component

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

marquee

marquee selection component.

##Arity

marquee(
	surface [selector for element where selection takes palce], 
	selectable [selector for selectable items], 
	selectedClass [class to apply to items as they are selected])

##Using

var marquee = require("marquee");
marquee("body", "> .widget", "lit")
    .on("itemsSelected", function(items) {
        console.log(items);
});

emits "itemsSelected" event with jquery object containing selected items.

About

marquee selection component


Languages

Language:CoffeeScript 100.0%