Up and Down can be solved with:
// Correct for up / down if (options.direction == "up" || options.direction == "down") $(this).children().children().css({"white-space": "normal", float: "none"});
Single requires a bit more investigation!
Up and Down can be solved with:
// Correct for up / down .children( ).children( ).css({ "white- space": "normal", float: "none"});
if (options.direction == "up" || options.direction == "down")
$(this)
Single requires a bit more investigation!