Files
Phraseanet/www/include/jquery.p4.modal.js
Romain Neutron 9fa95db23c Fix JS codestyle
2013-11-12 12:49:23 +01:00

21 lines
482 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;
}
});
});