Firepadを使用しようとしています。firepad を使用しようとすると、以下のエラーが発生します。
Firefox で。
Error: i.parentNode is null
c@https://cdn.firebase.com/libs/firepad/1.3.0/firepad.min.js:15:16104
c@https://cdn.firebase.com/libs/firepad/1.3.0/firepad.min.js:15:15380
Chrome では、以下のエラーが発生しています。
TypeError: Cannot read property 'replaceChild' of null
at new c (firepad.min.js:15)
at Function.c (firepad.min.js:15)
at n.$scope.initFirepad (NotesUtils.js:231)
<div class="form-group">
<label for="inpNoteDescription" class="col-md-3 control-label">Note Description With Firepad</label>
<div class="col-sm-8" id="inpNoteDescription">
</div>
</div>
他に何かする必要がある場合はお知らせください。
$scope.initFirepad = function(){
var firepadRef = $scope.initObj.firepadRef ;
var noteDescription = $scope.currentNote.description ;
var codeMirror = CodeMirror(document.getElementById('inpNoteDescription'), { lineWrapping: true });
var firepad = Firepad.fromCodeMirror(firepadRef, codeMirror, { richTextShortcuts: true, richTextToolbar: true, defaultText: noteDescription });
}