mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
14 lines
261 B
CoffeeScript
14 lines
261 B
CoffeeScript
define [], () ->
|
|
class HelpManager
|
|
template: $("#helpLinkTemplate").html()
|
|
|
|
constructor: (@ide) ->
|
|
@$el = $(@template)
|
|
$("#toolbar-footer").append(@$el)
|
|
@$el.on "click", (e) ->
|
|
e.preventDefault()
|
|
window.open("/learn", "_latex_help")
|
|
|
|
|
|
|