diff -r a4642baaf829 -r 4d4862461b8d web/wp-admin/js/word-count.dev.js --- a/web/wp-admin/js/word-count.dev.js Tue Feb 02 14:45:47 2010 +0000 +++ b/web/wp-admin/js/word-count.dev.js Tue Feb 02 15:44:16 2010 +0000 @@ -1,39 +1,39 @@ -// Word count -(function($) { - wpWordCount = { - - init : function() { - var t = this, last = 0, co = $('#content'); - - $('#wp-word-count').html( wordCountL10n.count.replace( /%d/, '0' ) ); - t.block = 0; - t.wc(co.val()); - co.keyup( function(e) { - if ( e.keyCode == last ) return true; - if ( 13 == e.keyCode || 8 == last || 46 == last ) t.wc(co.val()); - last = e.keyCode; - return true; - }); - }, - - wc : function(tx) { - var t = this, w = $('#word-count'), tc = 0; - - if ( t.block ) return; - t.block = 1; - - setTimeout( function() { - if ( tx ) { - tx = tx.replace( /<.[^<>]*?>/g, ' ' ).replace( / | /gi, ' ' ); - tx = tx.replace( /[0-9.(),;:!?%#$¿'"_+=\\/-]*/g, '' ); - tx.replace( /\S\s+/g, function(){tc++;} ); - } - w.html(tc.toString()); - - setTimeout( function() { t.block = 0; }, 2000 ); - }, 1 ); - } - } - - $(document).ready( function(){ wpWordCount.init(); } ); -}(jQuery)); +// Word count +(function($) { + wpWordCount = { + + init : function() { + var t = this, last = 0, co = $('#content'); + + $('#wp-word-count').html( wordCountL10n.count.replace( /%d/, '0' ) ); + t.block = 0; + t.wc(co.val()); + co.keyup( function(e) { + if ( e.keyCode == last ) return true; + if ( 13 == e.keyCode || 8 == last || 46 == last ) t.wc(co.val()); + last = e.keyCode; + return true; + }); + }, + + wc : function(tx) { + var t = this, w = $('#word-count'), tc = 0; + + if ( t.block ) return; + t.block = 1; + + setTimeout( function() { + if ( tx ) { + tx = tx.replace( /<.[^<>]*?>/g, ' ' ).replace( / | /gi, ' ' ); + tx = tx.replace( /[0-9.(),;:!?%#$¿'"_+=\\/-]*/g, '' ); + tx.replace( /\S\s+/g, function(){tc++;} ); + } + w.html(tc.toString()); + + setTimeout( function() { t.block = 0; }, 2000 ); + }, 1 ); + } + } + + $(document).ready( function(){ wpWordCount.init(); } ); +}(jQuery));