1) Inject JQuery as described on this website: http://www.learningjquery.com/2009/04/better-stronger-safer-...
2) Then open your JS console and copy and paste this in:
$("textarea").keyup(function(){ try { formatter.set(editor.get()) } catch (a) { notify.showError(a) } });
And viola! It will change in real time from the left side to the right. Doing the opposite should be trivial.
Enjoy.
PS: This is a total hack obviously. Not production stuff.
1) Inject JQuery as described on this website: http://www.learningjquery.com/2009/04/better-stronger-safer-...
2) Then open your JS console and copy and paste this in:
$("textarea").keyup(function(){ try { formatter.set(editor.get()) } catch (a) { notify.showError(a) } });
And viola! It will change in real time from the left side to the right. Doing the opposite should be trivial.
Enjoy.
PS: This is a total hack obviously. Not production stuff.