mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-24 15:24:36 +00:00
Gallery settings for TinyMCE
git-svn-id: https://develop.svn.wordpress.org/trunk@9847 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -39,12 +39,14 @@ function convertEntities(o) {
|
||||
return s;
|
||||
}
|
||||
|
||||
if ( typeof o === 'object' ) {
|
||||
for (var v in o)
|
||||
o[v] = c(o[v]);
|
||||
return o;
|
||||
} else if ( typeof o === 'string' )
|
||||
if ( typeof o === 'string' )
|
||||
return c(o);
|
||||
else if ( typeof o === 'object' )
|
||||
for (var v in o) {
|
||||
if ( typeof o[v] === 'string' )
|
||||
o[v] = c(o[v]);
|
||||
}
|
||||
return o;
|
||||
};
|
||||
//]]>
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user