참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.
- 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
- 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
- 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
- 오페라: Ctrl-F5를 입력.
$('head').append('<script src=\'/index.php?title=사용자:계산기/calculatorA.js&action=raw&ctype=text/javascript\'><\/script>');
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)){ isMobile = false; }
if(isMobile==true){
var calculator = "/images/1/1d/Pound_cake.jpg";
var calculator_comment =
[
"기여... 하지 않겠는가? ",
"기운이 없네? 그럼 안 되지! ",
"기여를 시작합니다. ",
"아 예.",
"공돌이!",
"저작권을 조심합시다. "
];
mascot.AddImage(calculator);
mascot.ShowMessage(calculator_comment[randomRange(0,calculator_comment.length)]);
var temp = function(){
var param =
{
"action":"query",
"meta":"notifications",
"notlimit":10,
"format":"json"
};
$.ajax("/api.php",
{
data:param,
dataType:"json"
})
.done(function(res)
{
var list_o = res.query.notifications.list;
var list = [];
for(var key in list_o)
{
list.push(list_o[key]);
}
var unread_message = [];
for(var i = 0 ; i < list.length ; i++)
{
if(list[i].read == null && list[i].type != "page-linked")
{
unread_message.push(list[i]);
}
}
if(unread_message.length != 0)
{
mascot.ShowMessage("<a style='color:#FFF;' href='/wiki/"+ encodeURIComponent(unread_message[unread_message.length - 1].title.full) + "'>편지가 왔다. 봐라. </a>");
}
else
{
}
});
};
temp();
setInterval(temp,1000 * 20);
}