| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- class app.views.Document extends app.View
- @el: document
- @shortcuts:
- help: 'onHelp'
- escape: 'onEscape'
- superLeft: 'onBack'
- superRight: 'onForward'
- init: ->
- @addSubview @nav = new app.views.Nav,
- @addSubview @sidebar = new app.views.Sidebar
- @addSubview @resizer = new app.views.Resizer if app.views.Resizer.isSupported()
- @addSubview @content = new app.views.Content
- @addSubview @path = new app.views.Path unless app.isSingleDoc() or app.isMobile()
- @setTitle()
- @activate()
- return
- toggleLight: ->
- css = $('link[rel="stylesheet"][data-alt]')
- alt = css.getAttribute('data-alt')
- css.setAttribute('data-alt', css.getAttribute('href'))
- css.setAttribute('href', alt)
- app.settings.setDark(alt.indexOf('dark') > 0)
- app.appCache?.updateInBackground()
- return
- setTitle: (title) ->
- @el.title = if title then "DevDocs/#{title}" else 'DevDocs'
- onHelp: ->
- app.router.show '/help#shortcuts'
- onEscape: ->
- path = if !app.isSingleDoc() or location.pathname is app.doc.fullPath()
- '/'
- else
- app.doc.fullPath()
- app.router.show(path)
- onBack: ->
- history.back()
- onForward: ->
- history.forward()
|