Merge pull request #137 from natejlong/master

Fix ckeditor-init.js by giving it access to a valid jQuery instance, along with other minor changes to ckeditor-init.js
This commit is contained in:
riklaunim 2014-10-18 23:01:09 +02:00
commit 5ebc347a54
1 changed files with 15 additions and 12 deletions

View File

@ -1,20 +1,23 @@
$(function() {
;(function() {
var $ = $ || django.jQuery;
$(function() {
initialiseCKEditor();
initialiseCKEditorInInlinedForms();
function initialiseCKEditorInInlinedForms() {
$(".add-row a, .grp-add-handler").click(function () {
initialiseCKEditor();
return true;
});
$(document).on("click", ".add-row a, .grp-add-handler", function () {
initialiseCKEditor();
return true;
});
}
});
function initialiseCKEditor() {
$('textarea[data-type=ckeditortype]').each(function(){
function initialiseCKEditor() {
$('textarea[data-type=ckeditortype]').each(function(){
if($(this).data('processed') == "0" && $(this).attr('id').indexOf('__prefix__') == -1){
$(this).data('processed',"1");
CKEDITOR.replace($(this).attr('id'), $(this).data('config'));
$(this).data('processed',"1");
CKEDITOR.replace($(this).attr('id'), $(this).data('config'));
}
});
}
});
};
});
}());