Files
Phraseanet/www/include/jquery.p4.modal.js
Romain Neutron 4c5b7eb658 V 3.5 RC 1
2011-12-05 00:23:28 +01:00

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;
}
});
});