diff -r a4642baaf829 -r 4d4862461b8d web/wp-admin/js/utils.dev.js --- a/web/wp-admin/js/utils.dev.js Tue Feb 02 14:45:47 2010 +0000 +++ b/web/wp-admin/js/utils.dev.js Tue Feb 02 15:44:16 2010 +0000 @@ -1,166 +1,166 @@ -// utility functions -function convertEntities(o) { - var c, v; - c = function(s) { - if (/&[^;]+;/.test(s)) { - var e = document.createElement("div"); - e.innerHTML = s; - return !e.firstChild ? s : e.firstChild.nodeValue; - } - return s; - } - - if ( typeof o === 'string' ) { - return c(o); - } else if ( typeof o === 'object' ) { - for (v in o) { - if ( typeof o[v] === 'string' ) { - o[v] = c(o[v]); - } - } - } - return o; -} - -var wpCookies = { -// The following functions are from Cookie.js class in TinyMCE, Moxiecode, used under LGPL. - - each : function(o, cb, s) { - var n, l; - - if (!o) - return 0; - - s = s || o; - - if (typeof(o.length) != 'undefined') { - for (n=0, l = o.length; n