_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Writ Keeper/Scripts/historyDeleter.js

In today's world, User:Writ Keeper/Scripts/historyDeleter.js has taken a fundamental role in people's lives. Since its emergence, User:Writ Keeper/Scripts/historyDeleter.js has generated a significant impact on various aspects of society, from the way we communicate to the way we carry out our daily activities. In this article, we will explore the role that User:Writ Keeper/Scripts/historyDeleter.js plays in our daily lives, as well as its impact in different areas. From its influence on popular culture to its relevance in the academic field, User:Writ Keeper/Scripts/historyDeleter.js has proven to be a topic of great interest and relevance today. Through this research, we will seek to better understand the role User:Writ Keeper/Scripts/historyDeleter.js plays in our lives and its influence on the world around us.
$(document).ready(function() 
{
	if(mw.config.get("wgAction") == "view")
	{
		if($("li#ca-delete>a").length > 0)
		{
			var urlParam = $("li#ca-delete>a").attr("href").match(/&wpReason=+/);
			if(urlParam != null)
			{
				$("li#ca-history>a").attr("href", $("li#ca-history>a").attr("href") + urlParam);
			}
		}
	}
	if(mw.config.get("wgAction") == "history")
	{
		if($("li#ca-delete>a").length > 0)
		{
			var urlParam = $(location).attr("href").match(/&wpReason=+/);
			if(urlParam != null)
			{
				$("li#ca-delete>a").attr("href", $("li#ca-delete>a").attr("href") + urlParam);
			}
		}
	}
});