Index: trunk/phase3/resources/jquery/jquery.localize.js |
— | — | @@ -37,22 +37,24 @@ |
38 | 38 | .find( 'msg,html\\:msg' ) |
39 | 39 | .each( function() { |
40 | 40 | var $el = $(this); |
41 | | - $(this) |
42 | | - .text( mw.msg( options.prefix + $(this).attr( 'key' ) ) ) |
43 | | - .replaceWith( $(this).html() ); |
| 41 | + $el |
| 42 | + .text( mw.msg( options.prefix + $el.attr( 'key' ) ) ) |
| 43 | + .replaceWith( $el.html() ); |
44 | 44 | } ) |
45 | 45 | .end() |
46 | 46 | .find( '[title-msg]' ) |
47 | 47 | .each( function() { |
48 | | - $(this) |
49 | | - .attr( 'title', mw.msg( options.prefix + $(this).attr( 'title-msg' ) ) ) |
| 48 | + var $el = $(this); |
| 49 | + $el |
| 50 | + .attr( 'title', mw.msg( options.prefix + $el.attr( 'title-msg' ) ) ) |
50 | 51 | .removeAttr( 'title-msg' ); |
51 | 52 | } ) |
52 | 53 | .end() |
53 | 54 | .find( '[alt-msg]' ) |
54 | 55 | .each( function() { |
55 | | - $(this) |
56 | | - .attr( 'alt', mw.msg( options.prefix + $(this).attr( 'alt-msg' ) ) ) |
| 56 | + var $el = $(this); |
| 57 | + $el |
| 58 | + .attr( 'alt', mw.msg( options.prefix + $el.attr( 'alt-msg' ) ) ) |
57 | 59 | .removeAttr( 'alt-msg' ); |
58 | 60 | } ) |
59 | 61 | .end(); |