원본 이미지에 cursor:move 스타일 추가

This commit is contained in:
chicpro
2013-02-21 11:34:12 +09:00
parent 9fa61f5751
commit 926bbb2e5f

View File

@ -18,7 +18,7 @@ if(is_file($filepath)) {
$height = $size[1];
$fileurl = G4_DATA_URL.'/file/'.$bo_table.'/'.$filename;
$img = '<img src="'.$fileurl.'" alt="" width="'.$width.'" height="'.$height.'" class="draggable" style="position:relative;top:0;left:0">';
$img = '<img src="'.$fileurl.'" alt="" width="'.$width.'" height="'.$height.'" class="draggable" style="position:relative;top:0;left:0;cursor:move;">';
} else {
alert_close('파일이 존재하지 않습니다.');
}