mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 04:23:19 +00:00
17 lines
345 B
JavaScript
17 lines
345 B
JavaScript
$(document).ready(function(){
|
|
$('#tabs').tabs();
|
|
$('input.input-button').hover(
|
|
function(){parent.$(this).addClass('hover');},
|
|
function(){parent.$(this).removeClass('hover');}
|
|
);
|
|
$(this).bind('keydown',function(event){
|
|
switch(event.keyCode)
|
|
{
|
|
case 27:
|
|
parent.hideDwnl();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
}); |