Sortable List
The list elements below are not in order. Order them using simple drag and drop!
- Shape into 2" spheres and place on cookie sheet
- Add flour and baking powder
- Mix ingredients
- Blend butter, sugar, eggs, and vanilla
- Bake
- Check every few minutes
- Should take around 10-12 minutes
- Remove when golden brown
- Preheat oven to 350°
- Enjoy!
YUI().use(
'aui-sortable-list',
function(Y) {
var placeholder = Y.Node.create('<li class="placeholder"></li>');
new Y.SortableList(
{
dropCondition: function(event) {
return true;
},
dropOn: 'myList',
nodes: '#myList li',
placeholder: placeholder
}
);
}
);