<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
	<id>https://saberpedia.no/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sanya339</id>
	<title>Сейберпедия - Вклад [ru]</title>
	<link rel="self" type="application/atom+xml" href="https://saberpedia.no/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sanya339"/>
	<link rel="alternate" type="text/html" href="https://saberpedia.no/%D0%A1%D0%BB%D1%83%D0%B6%D0%B5%D0%B1%D0%BD%D0%B0%D1%8F:%D0%92%D0%BA%D0%BB%D0%B0%D0%B4/Sanya339"/>
	<updated>2026-04-29T21:22:09Z</updated>
	<subtitle>Вклад</subtitle>
	<generator>MediaWiki 1.43.3</generator>
	<entry>
		<id>https://saberpedia.no/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:Sanya339/citizen.js&amp;diff=2924</id>
		<title>Участник:Sanya339/citizen.js</title>
		<link rel="alternate" type="text/html" href="https://saberpedia.no/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:Sanya339/citizen.js&amp;diff=2924"/>
		<updated>2024-03-29T07:30:28Z</updated>

		<summary type="html">&lt;p&gt;Sanya339: Полностью удалено содержимое страницы&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Sanya339</name></author>
	</entry>
	<entry>
		<id>https://saberpedia.no/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:Sanya339/citizen.js&amp;diff=2923</id>
		<title>Участник:Sanya339/citizen.js</title>
		<link rel="alternate" type="text/html" href="https://saberpedia.no/index.php?title=%D0%A3%D1%87%D0%B0%D1%81%D1%82%D0%BD%D0%B8%D0%BA:Sanya339/citizen.js&amp;diff=2923"/>
		<updated>2024-03-29T07:27:11Z</updated>

		<summary type="html">&lt;p&gt;Sanya339: Новая страница: «/* Any JavaScript here will be loaded for users using the MonoBook skin */  /**  * Topbar content fix with sitenotice and CentralNotice  *  * Description: This fixes the location of topbar content (e.g., featured  *              content star) when the sitenotice or CentralNotice is active.  * Maintainers: User:TheDJ, User:MZMcBride  */ // Only when editing/previewing a page if ( mw.config.get( &amp;#039;wgAction&amp;#039; ) == &amp;#039;submit&amp;#039; || mw.config.get( &amp;#039;wgAction&amp;#039; ) =...»&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for users using the MonoBook skin */&lt;br /&gt;
&lt;br /&gt;
/**&lt;br /&gt;
 * Topbar content fix with sitenotice and CentralNotice&lt;br /&gt;
 *&lt;br /&gt;
 * Description: This fixes the location of topbar content (e.g., featured&lt;br /&gt;
 *              content star) when the sitenotice or CentralNotice is active.&lt;br /&gt;
 * Maintainers: [[User:TheDJ]], [[User:MZMcBride]]&lt;br /&gt;
 */&lt;br /&gt;
// Only when editing/previewing a page&lt;br /&gt;
if ( mw.config.get( &#039;wgAction&#039; ) == &#039;submit&#039; || mw.config.get( &#039;wgAction&#039; ) == &#039;view&#039; ) {&lt;br /&gt;
	$( function() {&lt;br /&gt;
		// If there is a dismissible sitenotice or an (expanded) centralnotice&lt;br /&gt;
		if ( $( &#039;#mw-dismissible-notice&#039; ).length || $( &#039;#centralNotice&#039; ).hasClass(&#039;expanded&#039;) ) {&lt;br /&gt;
			mw.util.addCSS( &#039;#bodyContent { position: relative; } #coordinates { position: absolute; top: 1px !important; }&#039; );&lt;br /&gt;
		}&lt;br /&gt;
	} );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
// Add support for legacy methods still being used by logged in users in their user scripts so these do not log as errors&lt;br /&gt;
// Please talk to [[User:Jon (WMF)]] before removing.&lt;br /&gt;
&lt;br /&gt;
function stubMissingFunctionError( method, rtnValue ) {&lt;br /&gt;
  if(window[method]) return;&lt;br /&gt;
  window[method] = function () {&lt;br /&gt;
    mw.log.error(&#039;Monobook.js says - A user script or gadget you have loaded is using a deprecated method:&#039; + method);&lt;br /&gt;
    return rtnValue;&lt;br /&gt;
  };&lt;br /&gt;
}&lt;br /&gt;
stubMissingFunctionError(&#039;getElementsByClassName&#039;, []);&lt;br /&gt;
stubMissingFunctionError(&#039;sajax_init_object&#039;);&lt;br /&gt;
stubMissingFunctionError(&#039;appendCSS&#039;);&lt;br /&gt;
stubMissingFunctionError(&#039;akeytt&#039;);&lt;br /&gt;
stubMissingFunctionError(&#039;attachEvent&#039;);&lt;br /&gt;
if (typeof InstaView === &#039;undefined&#039;) {&lt;br /&gt;
  window.InstaView = {}; // seeing various Uncaught ReferenceError: InstaView is not defined errors. Can be removed when addressed in https://global-search.toolforge.org/?q=InstaView%5C.&amp;amp;regex=1&amp;amp;namespaces=&amp;amp;title=.*%2Fmonobook%5C.js&lt;br /&gt;
}&lt;br /&gt;
// Avoid issue in old Monobook scripts: ReferenceError: mwCustomEditButtons is not defined &lt;br /&gt;
if(typeof mwCustomEditButtons !== &#039;undefined&#039;) window.mwCustomEditButtons = [];&lt;/div&gt;</summary>
		<author><name>Sanya339</name></author>
	</entry>
</feed>