Commit 9c08ce63 authored by Robert Schilling's avatar Robert Schilling

Merge pull request #7797 from cirosantilli/zen-style

Improve zen mode internals.
parents c759b8c9 04ef3ddc
class @ZenMode
@fullscreen_prefix = 'fullscreen_'
@ESC = 27
constructor: ->
@active_zen_area = null
@active_checkbox = null
$('body').on 'change', '.zennable input[type=checkbox]', (e) =>
checkbox = e.currentTarget;
checkbox = e.currentTarget
if checkbox.checked
Mousetrap.pause()
@udpateActiveZenArea(checkbox)
......@@ -15,8 +14,7 @@ class @ZenMode
@exitZenMode()
$(document).on 'keydown', (e) =>
console.log("esc")
if e.keyCode is ZenMode.ESC
if e.keyCode is $.ui.keyCode.ESCAPE
@exitZenMode()
$(window).on 'hashchange', @updateZenModeFromLocationHash
......@@ -27,7 +25,7 @@ class @ZenMode
@active_zen_area = @active_checkbox.parent().find('textarea')
@active_zen_area.focus()
window.location.hash = ZenMode.fullscreen_prefix + @active_checkbox.prop('id')
exitZenMode: =>
if @active_zen_area isnt null
Mousetrap.unpause()
......@@ -48,4 +46,4 @@ class @ZenMode
if checkbox
@udpateActiveZenArea(checkbox)
else
@exitZenMode()
@exitZenMode()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment