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

m
m
Line 14: Line 14:
 
                 var content = jQuery('#wpUploadDescription').text();
 
                 var content = jQuery('#wpUploadDescription').text();
  
                 if (content.indexOf('Image summary') > 0) alert('code');
+
                 if (jQuery('#wpUploadDescription').text().indexOf('Image summary') > 0) alert('code');
 
                 else alert(content);
 
                 else alert(content);
  

Revision as of 21:19, 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 (jQuery('#wpUploadDescription').text() == '') {
            jQuery('#wpUploadDescription').text(template);
        }

        $('#mw-upload-form').submit(function() {
            if (isTesting) {
                var content = jQuery('#wpUploadDescription').text();

                if (jQuery('#wpUploadDescription').text().indexOf('Image summary') > 0) alert('code');
                else alert(content);

                return false;
            }
        });
    });
}

//</source>