Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
jQuery WYSIWYG
jQuery WYSIWYG
0
Comments
div.wysiwyg ul.panel li a {overflow:hidden; text-indent: 100px !important;}
I saw that class.postcontroller.php and some other class.*.php still seems to initialize a call to vanilla.css in RC1 (even though everything is merged into style.css now).
I fixed this problem by adding
div.Popup textarea#Form_Body { position:inherit; overflow:auto; top:auto; }
Below Line 3 of jquery.wysiwyg.css
It removes the WYSIWYG for editing, but at least it doesn't break your site.
Peace
@daftspunk idea is a good interim step, but we'll have to figure out how to get jqysiwyg to convert ajax-inserted textareas.
Anyone have any ideas?
Replace Line 34 & 35 in "default.php" with: This ensures that the Plugin also works when using a different Root directory than simply "/" (f.eg. my forum runs under /forum/).
Cheers,
Oliver
$Sender->Head->AddString('\\');
$Sender->Head->AddString('\');
$Sender->Head->AddString(' < script src="'.DS.Gdn::Config("Garden.WebRoot").'plugins/jwysiwyg/jquery.wysiwyg.min.js" type="text/javascript" > < /script >');
$Sender->Head->AddString(' < link rel="stylesheet" href="'.DS.Gdn::Config("Garden.WebRoot").'plugins/jwysiwyg/jquery.wysiwyg.css" type="text/css" / >');
--> remove the spaces next to < and >
http://screensnapr.com/u/i/2imsb6.png
You can see it here...at the bottom you can see the 651.
Thanks,
David
That doesn't work well on some themes, especially if you've got the comment box floating right.
I'd propose removing the text-indent and just setting: font-size:0. That worked like a charm on my site.
Thanks!