ผลต่างระหว่างรุ่นของ "ผู้ใช้:Antelope/common.js"

จากวิกิพีเดีย สารานุกรมเสรี
เนื้อหาที่ลบ เนื้อหาที่เพิ่ม
Antelope (คุย | ส่วนร่วม)
หน้าใหม่: →‎** Start editing here **: // When you want to end your break? // no leading zeroes. (example: 7 - correct, 07 - incorrect) var dat...
(ไม่แตกต่าง)

รุ่นแก้ไขเมื่อ 18:41, 13 กุมภาพันธ์ 2558

        /*** Start editing here ***/
 
        // When you want to end your break?
        // no leading zeroes. (example: 7 - correct, 07 - incorrect)
 
        var date = { year: 2019, month: 2, day: 13};
        var time = { hours: 0, minutes: 0, seconds: 0 };
 
        /*** Stop editing here ***/
 
        var currentDate = new Date();
        var enforcedBreakEnd = new Date(
                date.year,date.month-1,date.day,time.hours,time.minutes,time.seconds);
        if (currentDate <= enforcedBreakEnd) {
                alert("ระงับการใช้วิกิพีเดียจนถึง "+enforcedBreakEnd.toLocaleString()
                        + "\n(ปัจจุบันคือเวลา "+currentDate.toLocaleString()+")\n\nคุณไม่ควรกลับมาอีก!");
                location = "http://"+location.host+"/w/index.php?title="
                        + "Special:Userlogout&returnto=หน้าหลัก";
        }
});
/*** END WIKIBREAK ENFORCER ***/
 
/* </nowiki></pre> */