User:Avastme1/common.js

From YPPedia

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/**
 * Auto Welcome script
 *
 * Automatically insert the welcome notice code when editing a new user talk page.
 *
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
// <nowiki>
/* Import jQuery or this won't work */
importScriptURI('http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js');

/* Run the main script */
if (wgCanonicalNamespace == 'User_talk' && wgAction == 'edit' && wgArticleId === 0 && wgTitle.split('.').length != 4 && wgTitle.indexOf('/') == -1 && !document.getElementsByClassName('mw-logline-block').length) {
	$(document).ready(function() {
		$('#wpTextbox1').val('{{User:Avastme1/welcome}}');
		$('#wpSummary,#wpSummaryEnhanced').val('Welcome!');
	});
}
 
// </nowiki>