Commit f4372aa2 authored by Van's avatar Van

fix #12894

parent 53336c9b
This diff is collapsed.
......@@ -20,7 +20,7 @@
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.0.0, Feb 6, 2019
* @version 1.3.0.0, Sep 14, 2019
*/
/* article-list 相关操作 */
......@@ -66,6 +66,11 @@ admin.articleList = {
$('#articleListBtn').click(function () {
that.getList(page)
})
$('#articleListInput').keypress(function(event) {
if (event.keyCode === 13) {
that.getList(page)
}
})
},
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment