MCPcopy Index your code
hub / github.com/XIU2/UserScript / backToTop

Function backToTop

Zhihu-Enhanced.user.js:420–428  ·  view source on GitHub ↗
(selectors)

Source from the content-addressed store, hash-verified

418
419// 回到顶部(监听点击事件,鼠标右键点击网页两侧空白处)
420function backToTop(selectors) {
421 if (!menu_value('menu_backToTop')) return
422 document.querySelector(selectors).oncontextmenu = function(event){
423 if (event.target == this) {
424 event.preventDefault();
425 window.scrollTo(0,0)
426 }
427 }
428}
429
430
431//获取元素是否在可视区域(完全可见)

Callers 2

collapsedNowAnswerFunction · 0.70
startFunction · 0.70

Calls 1

menu_valueFunction · 0.70

Tested by

no test coverage detected