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

m
m
Line 10: Line 10:
 
         }
 
         }
  
if (isTesting) {
 
 
         $('#mw-upload-form').submit(function() {
 
         $('#mw-upload-form').submit(function() {
 
             if ($('#wpUploadDescription').val().toLowerCase().indexOf('image summary') == -1) {
 
             if ($('#wpUploadDescription').val().toLowerCase().indexOf('image summary') == -1) {
Line 20: Line 19:
 
             }
 
             }
 
         });
 
         });
}
 
 
     });
 
     });
 
}
 
}
  
 
//</source>
 
//</source>

Revision as of 23:02, 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) {
    jQuery(document).ready(function() {
        if ($('#wpUploadDescription').val() == '') {
            $('#wpUploadDescription').text(template);
        }

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

//</source>