mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 12:33:26 +00:00
initial import
This commit is contained in:
15
www/include/jquery.p4.modal.js
Normal file
15
www/include/jquery.p4.modal.js
Normal file
@@ -0,0 +1,15 @@
|
||||
$(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;
|
||||
}
|
||||
})
|
||||
});
|
Reference in New Issue
Block a user