Skip to content

Instantly share code, notes, and snippets.

View IanMitchell's full-sized avatar
💭
Brainstorming something new!

Ian Mitchell IanMitchell

💭
Brainstorming something new!
View GitHub Profile
@IanMitchell
IanMitchell / peek.js.coffee
Created May 2, 2014 20:10
Peek Visibility Toggle
# Toggle Peek visibility (visible by default)
$(document).keypress (event) ->
# Respond to '\' keypress
if event.which is 92
if $("#peek").is(":visible")
$("#peek").hide()
else
$("#peek").show()