Merge pull request #331 from sharelatex/ja-autocomplete-fix

Potential fix for the auto-complete bug
This commit is contained in:
James Allen 2018-02-13 09:41:00 +00:00 committed by GitHub
commit a427414920
2 changed files with 7 additions and 4 deletions

View file

@ -91,8 +91,8 @@ define [
else
editor.setOption('behavioursEnabled', false)
window.editors ||= []
window.editors.push editor
window._debug_editors ||= []
window._debug_editors.push editor
scope.name = attrs.aceEditor
@ -428,7 +428,10 @@ define [
rendererData.lineHeight = editor.renderer.lineHeight
scope.$on '$destroy', () ->
detachFromAce(scope.sharejsDoc)
if scope.sharejsDoc?
detachFromAce(scope.sharejsDoc)
scope.$emit "#{scope.name}:inited", editor
template: """
<div class="ace-editor-wrapper">

View file

@ -224,7 +224,7 @@ define [
# is likely to end up with `\href{}ref{}`
if !data?
completions = this.completions
popup = editor.completer.popup
popup = this.popup
data = popup.getData(popup.getRow())
data.completer =
insertMatch: (editor, matchData) ->