mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
34 lines
No EOL
853 B
CoffeeScript
34 lines
No EOL
853 B
CoffeeScript
define ["base"], (App) ->
|
|
App.component "spellMenu", {
|
|
bindings: {
|
|
open: "<"
|
|
top: "<"
|
|
left: "<"
|
|
highlight: "<"
|
|
replaceWord: "&"
|
|
learnWord: "&"
|
|
}
|
|
template: """
|
|
<div
|
|
class="dropdown context-menu spell-check-menu"
|
|
ng-show="$ctrl.open"
|
|
ng-style="{top: $ctrl.top, left: $ctrl.left}"
|
|
ng-class="{open: $ctrl.open}"
|
|
>
|
|
<ul class="dropdown-menu">
|
|
<li ng-repeat="suggestion in $ctrl.highlight.suggestions | limitTo:8">
|
|
<a
|
|
href
|
|
ng-click="$ctrl.replaceWord({ highlight: $ctrl.highlight, suggestion: suggestion })"
|
|
>
|
|
{{ suggestion }}
|
|
</a>
|
|
</li>
|
|
<li class="divider"></li>
|
|
<li>
|
|
<a href ng-click="$ctrl.learnWord({ highlight: $ctrl.highlight })">Add to Dictionary</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
"""
|
|
} |