Skip to content

Tag Archives: javascript

Kropper

I was looking for a neat way to crop images last night and had originally planned to use the excellent jsCropper library from Dave Spurr, which I have used on projects before. When, during a bit of googling about I came across Kropper from Jonathon Wolke. It takes a slightly different approach to Cropper with [...]

FCKeditor Demo

I have been asked a few times for the code for the FCKeditor demo. So I thought I would put it up here for anyone to download, and by here I mean here. The tar includes the fckeditor plugin, the ajax scaffold plugin and the bits to get them working together. You will need to [...]

FCKeditor and FireFox

A few people have said they have been having problems with the text area not appearing in Firefox. This isn’t a problem I have had but for those of you who have, thanks to James Penny there is a solution….. Simply add something like :width => ‘400’, :height => ‘200’ to the fckeditor_textarea call and [...]

FCKeditor 0.4.0 Released

I released a new version of the FCKeditor plugin today. It contains a couple of changes to the controller to fix a potential security issue and also a remote_form_for helper so that now you can do this: <% fckeditor_remote_form_for :note, :url => @options.merge(:controller => ‘notes’), :editors => { :note => ['text'] } do |f| %> [...]

FCKeditor 0.3.2 Released

This release tidies up some of the things I thought I’d got right with the last one, doh. However, it turns out I had overlooked the paths for the spell check and the resource manager. Both of these now dynamically configure so that you can place your install anywhere you fancy. Unfortunately there is a [...]

FCKeditor 0.3.1 Released

This release fixes an issue with the base path to the editor being hardcoded into the helper. The problem arose when hosting an app using named virtual hosts and aliases. e.g. hosting your app at www.mydomain.com/scotts/railsapp instead of www.mydomain.com/railsapp. This should now all work……..

FCKeditor 0.3.0 Released

There is a new version of the FCKeditor plugin up. This fixes a problem I found when running tests. The alias method in the init.rb file was being called for every test and causing an infinite recursion. The README has also been fixed to remove the various typos people have found (thanks for the feedback). [...]

FCKeditor Plugin 0.2.3 Released

This release is basically a bug fix. The only really change is to apply the patch kindly provided by Nicola Piccinini which sorts out an issue with file upload from inside the resource manager. There are a couple of other changes to do with the install and version numbers, but that is all internal to [...]

FCKeditor Plugin 0.2.2 Released

There is a new version of the FCKeditor Rails plugin available details of how to get it and a demo are here. This version fixes a problem with having multiple editors open at once on the same page and also adds a helper to allow multiple editors on the same Ajax form. This also now [...]

FCKeditor Plugin 0.2.1 Released

I’ve just released the next version of the FCKeditor plugin. The main change in this version is the addition of the spell check functionality using ASpell. A big thank you to Ken Pratt for providing the patch for that and at the same time providing a solution (I hope) to the routing issues that some [...]