clarion/app/assets/javascripts/management/navigation.js.coffee

30 lines
903 B
CoffeeScript
Raw Normal View History

2014-10-14 15:04:44 +03:00
$ ->
$('#side-menu').metisMenu();
$ ->
$(window).bind "load resize", ->
topOffset = 50
width = if this.window.innerWidth > 0
this.window.innerWidth
else
this.screen.width
if width < 768
$('.collapsable').addClass 'collapse'
topOffset = 100
else
$('.collapsable').removeClass 'collapse'
height = if this.window.innerHeight > 0 ?
this.window.innerHeight
else
this.screen.height
height = height - topOffset
if height < 1
height = 1
if height > topOffset
$("#page-wrapper").css("min-height", (height) + "px")