사용자:Zlzleking/common.js: 두 판 사이의 차이

편집 요약 없음
(문서를 비움)
태그: 비우기
(같은 사용자의 중간 판 40개는 보이지 않습니다)
1번째 줄: 1번째 줄:
$('head').append('<script src=\'/index.php?title=사용자:다메즈마/hisyokan.js&action=raw&ctype=text/javascript\'><\/script>');
var ikazuchi = "/images/5/54/Speedwagon.png";
var ikazuchi_comment =
[
"내 소개를 하지! 나는 참견하기 좋아하는 스피드왜건!
<br>네가 걱정되어 리브레 위키에서 따라왔지!. "


];
mascot.AddImage(ikazuchi);
mascot.ShowMessage(ikazuchi_comment[randomRange(0,ikazuchi_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);

2019년 7월 21일 (일) 16:02 판