Index: trunk/phase3/resources/mediawiki/mediawiki.js |
— | — | @@ -675,12 +675,12 @@ |
676 | 676 | if ( modules.substr( 0, 7 ) == 'http://' || modules.substr( 0, 8 ) == 'https://' ) { |
677 | 677 | if ( type === 'text/css' ) { |
678 | 678 | setTimeout( function() { |
679 | | - $( 'head' ).append( '<link rel="stylesheet" type="text/css" href="' + modules + '" />' ); |
| 679 | + $( 'head' ).append( '<link rel="stylesheet" type="text/css" />' ).attr( 'href', modules ); |
680 | 680 | }, 0 ); |
681 | 681 | return true; |
682 | 682 | } else if ( type === 'text/javascript' || typeof type === 'undefined' ) { |
683 | 683 | setTimeout( function() { |
684 | | - $( 'body' ).append( '<script type="text/javascript" src="' + modules + '"></script>' ); |
| 684 | + $( 'body' ).append( '<script type="text/javascript"></script>' ).attr( 'src', modules ) |
685 | 685 | }, 0 ); |
686 | 686 | return true; |
687 | 687 | } |