Skip to content

Instantly share code, notes, and snippets.

View wololodev's full-sized avatar

Hamed Al-Khabaz wololodev

  • Montreal
View GitHub Profile
// Only need this for pushState enabled browsers
if (Backbone.history && Backbone.history._hasPushState) {
var $document = $(window.document);
var openLinkInTab = false;
$document.keydown(function(e) {
if (e.ctrlKey || e.keyCode === 91) {
openLinkInTab = true;
}
});