On most pages in my app, I have the north/east/south/west panes showing with jQuery UI Layout. On one page, I do not want any panes to show. I have added the following code to this one page, but the four panes still show:
$(document).ready(function () {
myLayout = $('body').layout({
closable: true
, north__initClosed: true
, north__initHidden: true
, south__initClosed: true
, south__initHidden: true
, west__initClosed: true
, west__initHidden: true
, east__initClosed: true
, east__initHidden: true
});
});
What am I doing wrong here?