Index: trunk/phase3/resources/jquery/jquery.mwExtension.js |
— | — | @@ -12,7 +12,7 @@ |
13 | 13 | '' : str.toString().replace( /\s+$/, '' ); |
14 | 14 | }, |
15 | 15 | ucFirst: function( str ) { |
16 | | - return str.substr( 0, 1 ).toUpperCase() + str.substr( 1 ); |
| 16 | + return str.charAt( 0 ).toUpperCase() + str.substr( 1 ); |
17 | 17 | }, |
18 | 18 | escapeRE: function( str ) { |
19 | 19 | return str.replace ( /([\\{}()|.?*+\-^$\[\]])/g, "\\$1" ); |