Files
RootPanel/core/static/script/layout.coffee
2014-08-05 00:28:39 +08:00

17 lines
383 B
CoffeeScript

$ ->
$.ajaxSetup
contentType: 'application/json; charset=UTF-8'
$('nav a').each ->
if $(@).attr('href') == location.pathname
$(@).parent().addClass('active')
if window.location.hash == '#redirect'
$('#site-not-exist').modal 'show'
$('#logout').click (e) ->
e.preventDefault()
$.post '/account/logout/', {}
.success ->
location.reload()