4chan-x/src/Menu/DownloadLink.coffee
Nicolas Stepien a2e87f1200 Structure.
God damn War Thunder, download faster!
2013-04-26 17:40:51 +02:00

17 lines
396 B
CoffeeScript

DownloadLink =
init: ->
return if g.VIEW is 'catalog' or !Conf['Menu'] or !Conf['Download Link']
a = $.el 'a',
className: 'download-link'
textContent: 'Download file'
$.event 'AddMenuEntry',
type: 'post'
el: a
order: 70
open: ({file}) ->
return false unless file
a.href = file.URL
a.download = file.name
true