Difference between revisions of "MediaWiki:Common.js/sources.js"

m
m
Line 5: Line 5:
  
 
if (window.jQuery) {
 
if (window.jQuery) {
     jQuery(document).ready(function() {
+
     $(document).ready(function() {
         if (jQuery('#wpUploadDescription').text() == '') {
+
         if ($('#wpUploadDescription').text() == '') {
             jQuery('#wpUploadDescription').text(template);
+
             $('#wpUploadDescription').text(template);
 
         }
 
         }
  
 
         $('#mw-upload-form').submit(function() {
 
         $('#mw-upload-form').submit(function() {
             if (isTesting) {
+
             if ($('#wpUploadDescription').text().toLowerCase().indexOf('image summary') == -1) {
                if (jQuery('#wpUploadDescription').text().toLowerCase().indexOf('image summary') == -1) {
+
                alert('Please use the image template summary.');
                    alert('Please use the image template summary.');
 
                }
 
                else alert('good');
 
 
 
 
                 return false;
 
                 return false;
 
             }
 
             }
 +
            else return true;
 
         });
 
         });
 
     });
 
     });

Revision as of 21:28, 17 April 2010

/* Any JavaScript here will be loaded for all users on the upload page. */
//<source lang="javascript">

var template = "{" + "{Image summary\n| summary = \n| artist  = \n| source  = \n}}";

if (window.jQuery) {
    $(document).ready(function() {
        if ($('#wpUploadDescription').text() == '') {
            $('#wpUploadDescription').text(template);
        }

        $('#mw-upload-form').submit(function() {
            if ($('#wpUploadDescription').text().toLowerCase().indexOf('image summary') == -1) {
                alert('Please use the image template summary.');
                return false;
            }
            else return true;
        });
    });
}

//</source>