I'm trying to pass menu: "#menu"
to the anonymous object using chWidth()
.
How can i do this?
$('#fullpage').fullpage({verticalCentered: false}, chWidth());
function chWidth() {
if ($(window).width()) {
return {menu: "#menu"}
}
}
so it should ends up like this:
{
verticalCentered: false,
menu: "#menu"
}
How should the return statement be? I get an error if i try return menu:"#menu"