Browse Source

Fixed missing comma in React ES2015

pull/862/head
Ricardo Ambrogi 9 years ago
parent
commit
019e687ccb
  1. 2
      README.md

2
README.md

@ -467,7 +467,7 @@ export class SortableExampleEsnext extends React.Component {
// check if backing instance not null // check if backing instance not null
if (componentBackingInstance) { if (componentBackingInstance) {
let options = { let options = {
draggable: "div" // Specifies which items inside the element should be sortable draggable: "div", // Specifies which items inside the element should be sortable
group: "shared" group: "shared"
}; };
Sortable.create(componentBackingInstance, options); Sortable.create(componentBackingInstance, options);

Loading…
Cancel
Save