Skip to content

Instantly share code, notes, and snippets.

@nomnel
Created March 26, 2013 13:31
Show Gist options
  • Save nomnel/5245372 to your computer and use it in GitHub Desktop.
Save nomnel/5245372 to your computer and use it in GitHub Desktop.
try_go = (obj, func) ->
moved = false
console.log 'start'
$(window).on 'unload', ->
moved = true
console.log 'unload'
func()
setTimeout ->
unless moved
console.log 'not moved'
obj.removeClass('pressed')
obj.addClass('disable')
, 100
$('#header .app_nav .back a').click ->
unless $(this).hasClass('disable')
$(this).addClass('pressed')
try_go $(this), -> history.back()
false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment