소스 검색

Fix jquery selecting error.

tags/v1.0^2
Benjamin Attal 10 년 전
부모
커밋
7f63adfb31
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      static/js/index.js

+ 2
- 2
static/js/index.js 파일 보기

@@ -212,8 +212,8 @@ function createResult(codelet) {

var cur_match = 0;
$(newDiv).click(function(e) {
var $match = $('#match_' + cur_match),
$code = $('#tablecontainer');
var $code = $(this).find('#tablecontainer'),
$match = $code.find('#match_' + cur_match);

$code.scrollTop($code.scrollTop() - $code.height() / 2 +
$match.position().top + $match.height() / 2);


불러오는 중...
취소
저장