You are not logged in.
Pages: 1
How do I add a button that closes the fullscreen editor and redirects to the edited page? I already saved it with the SaveSubmit Plugin.
I started with something like that:
xinha_config.registerButton("close_button", "close", "close.gif", false, function(){onclick: window.close()});
Maybe you can help me.
Offline
use window.location for the redirect
...didn't think the full screen editor could do a popup window though; it's an absolutely position div so it'd be: e._fullScreen();
xinha_config.registerButton("close_button", "close", "close.gif", false, function(e){ e._fullScreen(); window.href='......'; });
where ...... is the URL to redirect to
David G. Paul
[url]http://www.newearthonline.co.uk[/url]
Offline
Pages: 1