snipt/snipt/media/js/script.coffee

20 lines
449 B
CoffeeScript
Raw Normal View History

2011-10-10 20:30:56 -07:00
$ =>
$(document).bind('keyup', '/', -> $('input#search-query').focus() )
$('div.infield label').inFieldLabels()
2011-10-19 21:39:21 -07:00
$('section.code a.expand').click ->
el = $(this).parent()
el.toggleClass('expanded')
if el.hasClass('expanded')
el.css('height', 'auto')
$(this).text('Collapse')
else
el.css('height', '200px')
$(this).text('Expand')
false
2011-10-10 20:30:56 -07:00
false