משתמש:Shimon Tregubov/common.js
(הופנה מהדף משתמש:Shimon.tre/common.js)
הערה: לאחר הפרסום, ייתכן שיהיה צורך לנקות את זיכרון המטמון (cache) של הדפדפן כדי להבחין בשינויים.
- פיירפוקס / ספארי: להחזיק את המקש Shift בעת לחיצה על טעינה מחדש (Reload) או ללחוץ על צירוף המקשים Ctrl-F5 או Ctrl-R (במחשב מק: ⌘-R).
- גוגל כרום: ללחוץ על צירוף המקשים Ctrl-Shift-R (במחשב מק: ⌘-Shift-R).
- אדג': להחזיק את המקש Ctrl בעת לחיצה על רענן (Refresh) או ללחוץ על צירוף המקשים Ctrl-F5.
importUserScript( 48, 110, 10, 52, 97, 29, 67, 16, 33, 80, 76, 74, 78, 108);
importScript('משתמש:Yonidebest/monobook.js/highlightAnon.js');
importScript('משתמש:החבלן/common.js/editCounterTab.js');
/* הוספת "מעבר למעלה" בשולי חלון הצפייה */
/* goToTop – Handy for phones. Adds a small button to the bottom left of the page which moves to the top of the page when tapped. */
/* https://en.wiki.x.io/wiki/User:Numbermaniac/goToTop.js :מקור */
$(function(){
'use strict';
$('body').append('<span id="to-top">↟ מעבר למעלה ↟</span>');
var $topButton = $('#to-top');
$topButton.css({
'color': 'blue',
'position': 'fixed',
'bottom': '-30px',
'left': '4px',
'cursor': 'pointer',
'transition': 'bottom 0.5s',
'-webkit-transition': 'bottom 0.5s',
'user-select': 'none',
'-webkit-user-select': 'none',
'-moz-user-select': 'none',
'-ms-user-select': 'none'
}).click(function(){
$('html, body').animate({scrollTop: 0},200);
});
$(window).scroll(function(){
if ($(window).scrollTop() > 100 ) {
$topButton.css('bottom', '4px');
}else{
$topButton.css('bottom', '-30px');
}
});
});
mw.loader.load("https://en.wiki.x.io/w/index.php?title=User:Guycn2/UserInfoPopup.js/min.js&action=raw&ctype=text/javascript");