This plugin includes a "Background image" field (with a button to launch the server browser) in the Table and Cell properties dialogs.
Further explanations at the post in my blog.
Plugin sponsored by Igenti Inc.
License
Licensed under the terms of any of the following licenses at your choice: GPL, LGPL and MPL.
Download
Backgrounds version 1.3.1:
download link
Installation
1. Extract the contents of the file into the "plugins" folder of CKEditor.
2. In the CKEditor configuration file (config.js) add the following code:
config.extraPlugins = 'backgrounds';
All the details and options are explained in the included install doc.
I've published a version
I've published a version compatible with CKEditor 4 here: http://ckeditor.com/addon/backgrounds
I have added Background
I have added Background Position and Background Repeat controls. Engligh only:
https://github.com/OFark/backgrounds
Thank you.
Thank you.
I've added them and moved all the strings to the localization, but the new changes don't work correctly so I can't publish them as is.
The changes are available at https://github.com/AlfonsoML/backgrounds/tree/repeat
Issues (I didn't test too much, these problems are showstoppers):
If you can fix those problems I'll take a look again to verify that everything else works fine.
Regards
Update
I have found working this:
http://ckeditor.com/addon/backgrounds
but with found an error in console stating that "tab is null"
for this just replace following lines in plugin.js at line no 120
tab.add(textInput);
tab.add(browseButton);
by
if(tab != null){
tab.add(textInput);
tab.add(browseButton);
}
Thank you.
Thank you.
I've added a patch for that problem in the 1.3.1 release.
Thanks for the great plugin!
Thanks for the great plugin alfonsoml
We have a users who would never be able to do the CSS themselves for the background image positioning- So we used this as a starting point: https://github.com/OFark/backgrounds (thanks OFark) and made the background position similarly a drop down list of options for our users.
Hi Dianna
Hi Dianna
It's great that you've found the plugin useful.
As I explained, the features that OFark created can be useful but I found the changes too buggy with just some little testing and I can't release a plugin with such problems because otherwise people would be complaining at me about the bugs.
Recently I added a fix by lazyhammer to the "repeat" branch: https://github.com/AlfonsoML/backgrounds/tree/repeat and I have to do a new review to check if it correctly fixes the main problems and I can finish the details.
It would be great if you could test that branch and provide whatever fixes you find so that everyone can use the updated version.