瀏覽代碼

Prevent page from scrolling to top when next match is clicked.

tags/v1.0^2
Benjamin Attal 10 年之前
父節點
當前提交
4cc903fb75
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. +1
    -0
      static/js/index.js

+ 1
- 0
static/js/index.js 查看文件

@@ -231,6 +231,7 @@ function createResult(codelet) {

$(nextMatch).click(function(e) {
e.stopPropagation()
e.preventDefault()
cur_match = cur_match >= matches.length - 1 ? 0 : cur_match + 1;
newMatch();
});


Loading…
取消
儲存