Removed unnecessary assignment to variable for background image on

This commit is contained in:
Sarven Capadisli 2009-06-26 05:38:43 +00:00
parent 4a90c3c3ad
commit 74d9b0f820

View File

@ -89,8 +89,7 @@ $(document).ready(function() {
$('body').css({'background-image':'none'}); $('body').css({'background-image':'none'});
}); });
$('#design_background-image_on').focus(function() { $('#design_background-image_on').focus(function() {
var bis = $('#design_background-image_onoff img')[0].src; $('body').css({'background-image':'url('+$('#design_background-image_onoff img')[0].src+')'});
$('body').css({'background-image':'url('+bis+')'});
}); });
$('#design_background-image_repeat').click(function() { $('#design_background-image_repeat').click(function() {