Include Button in WikiEditor
Hello and thanks for this nice Plugin. Can You tell me how to include the Upload-Button into the nearly standard Editor: Extension:WikiEditor? Thanks! 193.22.166.88 09:22, 26 January 2012 (UTC)
Hi, WikiEditor is supported in the new version (8.4) of MsUpload.
Hi Ratin,
to avoid having to close and open the filelist again to display it after dragging a file, you should add the last 2 lines to the QueueChanged event in the MsUpload.js:
uploader.bind('QueueChanged', function(up) {
if(up.files.length==1){
start_button.html('Hier klicken um diese Datei hochzuladen').show();
}else if(up.files.length>1){
start_button.html('Hier klicken um alle Dateien hochzuladen').show();
}else{
start_button.hide();
gallery_insert.hide();
}
$('#wikiEditor-ui-toolbar').find('.sections').css('height','100%');;
up.refresh();
});
GreetinX,
Alex
I'm having this problem now with v9.2. Using WikiEditor v0.3.1.
The button doesn't show up anywhere. I have no idea what the button should even look like. Hah. It works fine when WikiEditor is disabled and the normal toolbar is displayed.
Edit: In saying that, I just enabled the beta toolbar in my account preferences and it now works.