12 lines
230 B
CoffeeScript
12 lines
230 B
CoffeeScript
|
class Shortcuts
|
||
|
constructor: ->
|
||
|
if $('#modal-shortcuts').length > 0
|
||
|
$('#modal-shortcuts').modal('show')
|
||
|
else
|
||
|
$.ajax(
|
||
|
url: '/help/shortcuts',
|
||
|
dataType: "script"
|
||
|
)
|
||
|
|
||
|
@Shortcuts = Shortcuts
|