fixes themes path issues, moved vendor libraries

This commit is contained in:
Florian BLOUET
2015-11-18 12:04:10 +01:00
parent 5a34aa786a
commit 7c31c1914c
166 changed files with 169 additions and 18911 deletions

View File

@@ -0,0 +1,22 @@
function is_ctrl_key(event) {
if (event.altKey)
return true;
if (event.ctrlKey)
return true;
if (event.metaKey) // apple key opera
return true;
if (event.keyCode == '17') // apple key opera
return true;
if (event.keyCode == '224') // apple key mozilla
return true;
if (event.keyCode == '91') // apple key safari
return true;
return false;
}
function is_shift_key(event) {
if (event.shiftKey)
return true;
return false;
}