Thành viên:Samuele2002/common.js

Tủ sách mở Wikibooks

Chú ý: Sau khi lưu trang, có thể bạn sẽ phải xóa bộ nhớ đệm của trình duyệt để xem các thay đổi.

  • Firefox / Safari: Nhấn giữ phím Shift trong khi nhấn Tải lại (Reload), hoặc nhấn tổ hợp Ctrl-F5 hay Ctrl-R (⌘R trên Mac)
  • Google Chrome: Nhấn tổ hợp Ctrl-Shift-R (⇧⌘R trên Mac)
  • Internet Explorer / Edge: Nhấn giữ phím Ctrl trong khi nhấn Làm tươi (Refresh), hoặc nhấn tổ hợp Ctrl-F5
  • Opera: Nhấn tổ hợp Ctrl-F5.
//Mass rollback function
//Written by John254
//Adapted from User:Mr.Z-man/rollbackSummary.js
//Instructions: Selecting the "rollback all" tab when viewing a user's contributions history
//will open all rollback links displayed there. (Use with caution)

jQuery(document).ready(function ($) {

	function rollbackEverything() {
		for (var i in document.links) {
			if (document.links[i].href.indexOf('action=rollback') != -1) {
				window.open(document.links[i].href);
			}
		}
	}

	function rollbackEverythingButton() {
		var hasRollback = $("span.mw-rollback-link");
		if (hasRollback[0] && (document.title.indexOf("User contributions") !== -1) ) {
			var link = mw.util.addPortletLink(
				'p-cactions',
				'#',
				'rollback all',
				'ca-rollbackeverything',
				'rollback all edits displayed here'
			);
			$(link).click(function (e) {
				e.preventDefault();
				rollbackEverything();
			});
		}
	}

	mw.loader.using(['mediawiki.util'], function() {
		rollbackEverythingButton();
	});

});