Mohan Suresh wrote:
> I have a doubt about MgnlAdminCentral.showContent() which we normally use in
> the onclick of a men item.
> what is the significance of the two "false" parameters in
> MgnlAdminCentral.showContent('/.magnolia/pages/inbox.html', false, false) ?
See the source of AdminCentral.js:
----
/**
* Show the url in the content div (iframe)
* @param url the url to call
* @param border set a border on the div
* @param scrolled show scrollbars (a different div will be used)
*/
this.showContent = function(url, border, scrolled){
scrolled = scrolled!=null?scrolled: true;
border = border!=null?border: true;
----
As you can see both boolean arguments default to true.
Nils.
----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------