Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Usage Example Syntax Error #24

Open
shutupflanders opened this issue Mar 25, 2014 · 0 comments
Open

Usage Example Syntax Error #24

shutupflanders opened this issue Mar 25, 2014 · 0 comments

Comments

@shutupflanders
Copy link

The usage example has a syntax error:

// some of the advanced usages
$('div.container').multisortable({
items: "div.item",
selectedClass: "selected",
click: function(e){ console.log("I'm selected."); }
stop: function(e){ console.log("I've been sorted."); }
});

should be:

// some of the advanced usages
$('div.container').multisortable({
items: "div.item",
selectedClass: "selected",
click: function(e){ console.log("I'm selected."); }, //added missing comma
stop: function(e){ console.log("I've been sorted."); }
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant