Skip to content
Snippets Groups Projects
Commit fa858d71 authored by Erik Sargent's avatar Erik Sargent
Browse files

initial setup

parent ccb9bb4b
No related branches found
No related tags found
No related merge requests found
// your file
var Files = Files || {};
// Array Remove - By John Resig (MIT Licensed)
Array.prototype.remove = function(from, to) {
var rest = this.slice((to || from) + 1 || this.length);
this.length = from < 0 ? this.length + from : from;
return this.push.apply(this, rest);
};
Files.bindKeyboardShortcuts = function (document, $){
var keys = []
$(document).keydown(function(event){//check for modifier keys
if($.inArray(event.keyCode, keys) == -1)
keys.push(event.keyCode);
console.log(event.keyCode);
if($.inArray(78, keys) !== -1 && ($.inArray(224, keys) !== -1 || $.inArray(17, keys) !== -1 || $.inArray(91, keys) !== -1 || $.inArray(93, keys) !== -1)){ //78=n, 224=cmd(firefox), 17=cmd(Opera), 91=leftCmd(WebKit), 93=rightCmd(WebKit)
event.preventDefault(); //Prevent web browser from responding
}
});
$(document).keyup(function(event){
// do your event.keyCode checks in here
console.log(JSON.stringify(keys));
if($.inArray(78, keys) !== -1 && ($.inArray(224, keys) !== -1 || $.inArray(17, keys) !== -1 || $.inArray(91, keys) !== -1 || $.inArray(93, keys) !== -1)){ //78=n, 224=cmd(firefox), 17=cmd(Opera), 91=leftCmd(WebKit), 93=rightCmd(WebKit)
if($.inArray(16, keys) !== -1){ //16=shift, New File
$("#new").addClass("active");
$(".popup.popupTop").toggle(true);
$('#new li[data-type="file"]').trigger('click');
console.log("new file");
keys.remove($.inArray(78, keys));
}
else{ //New Folder
$("#new").addClass("active");
$(".popup.popupTop").toggle(true);
$('#new li[data-type="folder"]').trigger('click');
console.log("new folder");
keys.remove($.inArray(78, keys));
}
}
if($("#new").hasClass("active") && $.inArray(27, keys) !== -1){
$("#controls").trigger('click');
console.log("close");
}
keys.remove($.inArray(event.keyCode, keys));
});
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment