미디어위키:Gadget-Mascot.js

Mykim5902 (토론 | 기여)님의 2015년 8월 12일 (수) 18:42 판 (새 문서: <!--사용자:다메즈마/mascot notification.js에서 이츠레아 부분 삭제--> $('head').append( '<script src=\'/index.php?title=사용자:다메즈마/hisyokan.js&action=...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

참고: 설정을 저장한 후에 바뀐 점을 확인하기 위해서는 브라우저의 캐시를 새로 고쳐야 합니다.

  • 파이어폭스 / 사파리: Shift 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5 또는 Ctrl-R을 입력 (Mac에서는 ⌘-R)
  • 구글 크롬: Ctrl-Shift-R키를 입력 (Mac에서는 ⌘-Shift-R)
  • 인터넷 익스플로러 / 엣지: Ctrl 키를 누르면서 새로 고침을 클릭하거나, Ctrl-F5를 입력.
  • 오페라: Ctrl-F5를 입력.
<!--[[사용자:다메즈마/mascot notification.js]]에서 이츠레아 부분 삭제-->

$('head').append(
'<script src=\'/index.php?title=사용자:다메즈마/hisyokan.js&action=raw&ctype=text/javascript\'><\/script>'
);
var libra = 
{
	img:"/images/3/3d/리브레_위키_마스코트.png",
	comment:"한번만 더 '노브라'라고 하면 차단할테니 각오하세요" 
};
var libra2 = libra;
libra2.img = "/images/8/8b/리브라_대반달.png";
var libra3 =
{
	img:"/images/d/d3/백팩커리브라.png",
	comment:"자 얼릉 문서수정하러 가자고"
};
var libren =
{
	img:"/images/b/be/리브렌_100.png",
	comment:"나 팩맨아니라고!"
};
var mascot_list = 
[
libra,
libra2,
libra3,
libren,
itsurea_moe,
itsurea_moe2
];
if($(document).width() >= 1000)
{
var select = mascot_list[randomRange(0,mascot_list.length)];
mascot.AddImage(select.img);
mascot.ShowMessage(select.comment);
 
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 href='/wiki/"+ encodeURIComponent(unread_message[unread_message.length - 1].title.full)  + "'>알림이 도착했어요</a>");
		}
		else
		{
 
		}
	});
};
temp();
setInterval(temp,1000 * 20);
}