removed useless handlers which caused problems from my beta release rush.

This commit is contained in:
Naomi 2011-01-18 14:42:29 -05:00
parent d770125206
commit 193bb87879

View file

@ -36,14 +36,6 @@ function cueSetUp(pos, json) {
$("#spl_length")
.empty()
.append(json.response.length);
$(".spl_cue_in span:last").blur(changeCueIn);
$(".spl_cue_out span:last").blur(changeCueOut);
}
function fadeSetUp() {
$(".spl_fade_in span:last").blur(changeFadeIn);
$(".spl_fade_out span:last").blur(changeFadeOut);
}
function changeCueIn() {
@ -123,7 +115,6 @@ function changeFadeIn() {
span.empty()
.append(json.response.fadeIn);
fadeSetUp();
});
}
@ -150,7 +141,6 @@ function changeFadeOut() {
span.empty()
.append(json.response.fadeOut);
fadeSetUp();
});
}