sitespark wrote:I wanted to A) Congratulate you on your fast-progress to date, very excited to hear that my 2 latest choices for CMS integration (JQuery & WYM) have converged!
Thanks
sitespark wrote:B) I wanted to enquire as to why you chose to drop the layout info above each TAG element for 0.3; H1, H2, etc (WinXP, FireFox 2.0.0.3)?
Visual feedback hasn't been dropped - it's simply on the todo list
sitespark wrote:After fiddling with 0.3 I can see the improvements, but I felt it's less intuitive, at first glance, than 0.2 - my 2c:
- 'Containers' hidden (shouldnt 'classes' be hidden, and 'containers' shown?)
OK. The skin system is still alpha, but it's quite easy to do that: in WYMeditor's options, put the following code:
- Code: Select all
fPostInit: function(wym) {
$j(wym._box).find(wym._options.sContainersSelector)
.addClass("wym_panel")
.removeClass("wym_dropdown");
$j(wym._box).find(wym._options.sClassesSelector)
.addClass("wym_dropdown")
.find(sWYM_H2)
.append("<span> ></span>");
}
This code removes the class "wym_dropdown" from the containers panel and puts it on the classes panel.
sitespark wrote:- No icons to denote TAG element.
Please explain?
sitespark wrote:- No preview icon
- No paste from Word icon
On the todo list
- Events handlers (like clicking on buttons) are overridable, using code like:
- Code: Select all
fPostInit: function(wym) {
$j(wym._box).find(wym._options.sToolSelector + "[@name='InsertImage']").unbind("click").click(function() {
//do stuff
return(false);
});
- The dialogs HTML is customizable (e.g. sDialogImageHtml option).
- It's easy to disable a button (
aToolsItems)
- ... and to add another one (see e.g.
fPostInit documentation and the
Tidy plugin)
So I guess it will be easy to integrate a third-party upload interface, but I think it will be even easier when options like fPreDialog or fPostDialog will be available, so you can manipulate the generated dialog itself...