Fix JS codestyle

This commit is contained in:
Romain Neutron
2013-11-12 12:49:23 +01:00
parent 51fb364d13
commit 9fa95db23c
78 changed files with 5184 additions and 6309 deletions

View File

@@ -1,12 +1,15 @@
$(document).ready(function(){
$(document).ready(function () {
$('#tabs').tabs();
$('input.input-button').hover(
function(){parent.$(this).addClass('hover');},
function(){parent.$(this).removeClass('hover');}
function () {
parent.$(this).addClass('hover');
},
function () {
parent.$(this).removeClass('hover');
}
);
$(this).bind('keydown',function(event){
switch(event.keyCode)
{
$(this).bind('keydown', function (event) {
switch (event.keyCode) {
case 27:
parent.hideDwnl();
break;