Index: openacs-4/packages/xowiki/tcl/form-field-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/xowiki/tcl/form-field-procs.tcl,v diff -u -N -r1.239.2.37 -r1.239.2.38 --- openacs-4/packages/xowiki/tcl/form-field-procs.tcl 28 Apr 2015 09:28:58 -0000 1.239.2.37 +++ openacs-4/packages/xowiki/tcl/form-field-procs.tcl 8 Jun 2015 15:31:47 -0000 1.239.2.38 @@ -2003,7 +2003,7 @@ set submit_callback "$submit_callback [my submit_callback]" ::xo::Page requireJS [subst { - function load_ckinline_$id () { + function load_$id () { CKEDITOR.inline('$id', { on: { instanceReady: function(e) { @@ -2019,11 +2019,11 @@ \$(document).ready(function() { if (\$('#$id').parents('.repeatable').length != 0) { if (\$('#$id').is(':visible')) { - load_ckinline_$id (); + load_$id (); } } else { //this is not inside a repeatable container, load normally - load_ckinline_$id (); + load_$id (); } $ready_callback });