Files
Phraseanet/www/include/jquery.p4.modal.js
2011-02-16 16:09:48 +01:00

15 lines
314 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;
}
})
});