Skip to content

Instantly share code, notes, and snippets.

@oleander
Created August 16, 2011 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oleander/1148818 to your computer and use it in GitHub Desktop.
Save oleander/1148818 to your computer and use it in GitHub Desktop.
$(".gig").delegate("a[data-editable=true]", "click", function(event){
var self = $(this);
if(event.shiftKey) {
window.location = "/" + self.data("media-type") + "/" + self.data("mid") + "/edit";
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment