<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14684] trunk: Custom background UI updates.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14684">14684</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-05-16 05:17:57 +0000 (Sun, 16 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Custom background UI updates. props ocean90 for initial patch, see <a href="http://trac.wordpress.org/ticket/12186">#12186</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmincustombackgroundphp">trunk/wp-admin/custom-background.php</a></li>
<li><a href="#trunkwpadminjscustombackgrounddevjs">trunk/wp-admin/js/custom-background.dev.js</a></li>
<li><a href="#trunkwpadminjscustombackgroundjs">trunk/wp-admin/js/custom-background.js</a></li>
<li><a href="#trunkwpincludesscriptloaderphp">trunk/wp-includes/script-loader.php</a></li>
<li><a href="#trunkwpincludesthemephp">trunk/wp-includes/theme.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmincustombackgroundphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/custom-background.php (14683 => 14684)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/custom-background.php        2010-05-16 03:49:50 UTC (rev 14683)
+++ trunk/wp-admin/custom-background.php        2010-05-16 05:17:57 UTC (rev 14684)
</span><span class="lines">@@ -91,6 +91,7 @@
</span><span class="cx">                         remove_theme_mod('background_image_thumb');
</span><span class="cx">                         return;
</span><span class="cx">                 }
</span><ins>+
</ins><span class="cx">                 if ( isset($_POST['remove-background']) ) {
</span><span class="cx">                         // @TODO: Uploaded files are not removed here.
</span><span class="cx">                         check_admin_referer('custom-background-remove', '_wpnonce-custom-background-remove');
</span><span class="lines">@@ -107,14 +108,16 @@
</span><span class="cx">                                 $repeat = 'repeat';
</span><span class="cx">                         set_theme_mod('background_repeat', $repeat);
</span><span class="cx">                 }
</span><del>-                if ( isset($_POST['background-position']) ) {
</del><ins>+
+                if ( isset($_POST['background-position-x']) ) {
</ins><span class="cx">                         check_admin_referer('custom-background');
</span><del>-                        if ( in_array($_POST['background-position'], array('center', 'right', 'left')) )
-                                $position = $_POST['background-position'];
</del><ins>+                        if ( in_array($_POST['background-position-x'], array('center', 'right', 'left')) )
+                                $position = $_POST['background-position-x'];
</ins><span class="cx">                         else
</span><span class="cx">                                 $position = 'left';
</span><del>-                        set_theme_mod('background_position', $position);
</del><ins>+                        set_theme_mod('background_position_x', $position);
</ins><span class="cx">                 }
</span><ins>+
</ins><span class="cx">                 if ( isset($_POST['background-attachment']) ) {
</span><span class="cx">                         check_admin_referer('custom-background');
</span><span class="cx">                         if ( in_array($_POST['background-attachment'], array('fixed', 'scroll')) )
</span><span class="lines">@@ -123,6 +126,7 @@
</span><span class="cx">                                 $attachment = 'fixed';
</span><span class="cx">                         set_theme_mod('background_attachment', $attachment);
</span><span class="cx">                 }
</span><ins>+
</ins><span class="cx">                 if ( isset($_POST['background-color']) ) {
</span><span class="cx">                         check_admin_referer('custom-background');
</span><span class="cx">                         $color = preg_replace('/[^0-9a-fA-F]/', '', $_POST['background-color']);
</span><span class="lines">@@ -155,33 +159,29 @@
</span><span class="cx">                 call_user_func($this-&gt;admin_image_div_callback);
</span><span class="cx">         } else {
</span><span class="cx"> ?&gt;
</span><del>-&lt;h3&gt;&lt;?php _e('Background Preview'); ?&gt;&lt;/h3&gt;
</del><ins>+&lt;h3&gt;&lt;?php _e('Background Image'); ?&gt;&lt;/h3&gt;
</ins><span class="cx"> &lt;table class=&quot;form-table&quot;&gt;
</span><span class="cx"> &lt;tbody&gt;
</span><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><del>-&lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Current Background'); ?&gt;&lt;/th&gt;
</del><ins>+&lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Preview'); ?&gt;&lt;/th&gt;
</ins><span class="cx"> &lt;td&gt;
</span><span class="cx"> &lt;?php
</span><span class="cx"> $background_styles = '';
</span><del>-if ( $bgcolor = get_background_color() ) {
-        $background_styles .= &quot;background-color: #{$bgcolor};&quot;;
-}
</del><ins>+if ( $bgcolor = get_background_color() )
+        $background_styles .= 'background-color: #' . $bgcolor . ';';
</ins><span class="cx"> 
</span><del>-if ( get_background_image() ) { 
-        $background_styles .= &quot;
-        background-image: url(&quot; . get_theme_mod('background_image_thumb', '') . &quot;);
-        background-repeat: &quot;. get_theme_mod('background_repeat', 'repeat') . &quot;;
-        background-position: &quot;. get_theme_mod('background_position', 'left') . &quot; top;
-        background-attachment: &quot; . get_theme_mod('background_attachment', 'fixed') . &quot;;
-        &quot;;
</del><ins>+if ( get_background_image() ) {
+        // background-image URL must be single quote, see below
+        $background_styles .= ' background-image: url(\'' . get_theme_mod('background_image_thumb', '') . '\');'
+                . ' background-repeat: ' . get_theme_mod('background_repeat', 'repeat') . ';'
+                . ' background-position: top ' . get_theme_mod('background_position_x', 'left');
</ins><span class="cx"> }
</span><span class="cx"> ?&gt;
</span><del>-&lt;div id=&quot;custom-background-image&quot; style=&quot;&lt;?php echo $background_styles; ?&gt;&quot;&gt;
</del><ins>+&lt;div id=&quot;custom-background-image&quot; style=&quot;&lt;?php echo $background_styles; ?&gt;&quot;&gt;&lt;?php // must be double quote, see above ?&gt;
</ins><span class="cx"> &lt;?php if ( get_background_image() ) { ?&gt;
</span><span class="cx"> &lt;img class=&quot;custom-background-image&quot; src=&quot;&lt;?php echo get_theme_mod('background_image_thumb', ''); ?&gt;&quot; style=&quot;visibility:hidden;&quot; alt=&quot;&quot; /&gt;&lt;br /&gt;
</span><span class="cx"> &lt;img class=&quot;custom-background-image&quot; src=&quot;&lt;?php echo get_theme_mod('background_image_thumb', ''); ?&gt;&quot; style=&quot;visibility:hidden;&quot; alt=&quot;&quot; /&gt;
</span><span class="cx"> &lt;?php } ?&gt;
</span><del>-&lt;br class=&quot;clear&quot; /&gt;
</del><span class="cx"> &lt;/div&gt;
</span><span class="cx"> &lt;?php } ?&gt;
</span><span class="cx"> &lt;/td&gt;
</span><span class="lines">@@ -189,10 +189,11 @@
</span><span class="cx"> &lt;?php if ( get_background_image() ) : ?&gt;
</span><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><span class="cx"> &lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Remove Image'); ?&gt;&lt;/th&gt;
</span><del>-&lt;td&gt;&lt;p&gt;&lt;?php _e('This will remove the background image. You will not be able to restore any customizations.') ?&gt;&lt;/p&gt;
</del><ins>+&lt;td&gt;
</ins><span class="cx"> &lt;form method=&quot;post&quot; action=&quot;&quot;&gt;
</span><span class="cx"> &lt;?php wp_nonce_field('custom-background-remove', '_wpnonce-custom-background-remove'); ?&gt;
</span><del>-&lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;remove-background&quot; value=&quot;&lt;?php esc_attr_e('Remove Background'); ?&gt;&quot; /&gt;
</del><ins>+&lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;remove-background&quot; value=&quot;&lt;?php esc_attr_e('Remove Background Image'); ?&gt;&quot; /&gt;&lt;br/&gt;
+&lt;?php _e('This will remove the background image. You will not be able to restore any customizations.') ?&gt;
</ins><span class="cx"> &lt;/form&gt;
</span><span class="cx"> &lt;/td&gt;
</span><span class="cx"> &lt;/tr&gt;
</span><span class="lines">@@ -201,10 +202,11 @@
</span><span class="cx"> &lt;?php if ( defined( 'BACKGROUND_IMAGE' ) ) : // Show only if a default background image exists ?&gt;
</span><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><span class="cx"> &lt;th scope=&quot;row&quot;&gt;&lt;?php _e('Restore Original Image'); ?&gt;&lt;/th&gt;
</span><del>-&lt;td&gt;&lt;p&gt;&lt;?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?&gt;&lt;/p&gt;
</del><ins>+&lt;td&gt;
</ins><span class="cx"> &lt;form method=&quot;post&quot; action=&quot;&quot;&gt;
</span><span class="cx"> &lt;?php wp_nonce_field('custom-background-reset', '_wpnonce-custom-background-reset'); ?&gt;
</span><del>-&lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;reset-background&quot; value=&quot;&lt;?php esc_attr_e('Restore Original Image'); ?&gt;&quot; /&gt;
</del><ins>+&lt;input type=&quot;submit&quot; class=&quot;button&quot; name=&quot;reset-background&quot; value=&quot;&lt;?php esc_attr_e('Restore Original Image'); ?&gt;&quot; /&gt;&lt;br/&gt;
+&lt;?php _e('This will restore the original background image. You will not be able to restore any customizations.') ?&gt;
</ins><span class="cx"> &lt;/form&gt;
</span><span class="cx"> &lt;/td&gt;
</span><span class="cx"> &lt;/tr&gt;
</span><span class="lines">@@ -216,8 +218,7 @@
</span><span class="cx"> &lt;label for=&quot;upload&quot;&gt;&lt;?php _e('Choose an image from your computer:'); ?&gt;&lt;/label&gt;&lt;br /&gt;&lt;input type=&quot;file&quot; id=&quot;upload&quot; name=&quot;import&quot; /&gt;
</span><span class="cx"> &lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;save&quot; /&gt;
</span><span class="cx"> &lt;?php wp_nonce_field('custom-background-upload', '_wpnonce-custom-background-upload') ?&gt;
</span><del>-&lt;p class=&quot;submit&quot;&gt;
-&lt;input type=&quot;submit&quot; value=&quot;&lt;?php esc_attr_e('Upload'); ?&gt;&quot; /&gt;
</del><ins>+&lt;input type=&quot;submit&quot; class=&quot;button&quot; value=&quot;&lt;?php esc_attr_e('Upload'); ?&gt;&quot; /&gt;
</ins><span class="cx"> &lt;/p&gt;
</span><span class="cx"> &lt;/form&gt;
</span><span class="cx"> &lt;/td&gt;
</span><span class="lines">@@ -230,28 +231,27 @@
</span><span class="cx"> &lt;table class=&quot;form-table&quot;&gt;
</span><span class="cx"> &lt;tbody&gt;
</span><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><del>-&lt;th scope=&quot;row&quot;&gt;&lt;?php _e( 'Background Color' ); ?&gt;&lt;/th&gt;
</del><ins>+&lt;th scope=&quot;row&quot;&gt;&lt;?php _e( 'Color' ); ?&gt;&lt;/th&gt;
</ins><span class="cx"> &lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e( 'Background Color' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;
</span><span class="cx"> &lt;input type=&quot;text&quot; name=&quot;background-color&quot; id=&quot;background-color&quot; value=&quot;#&lt;?php echo esc_attr(get_background_color()) ?&gt;&quot; /&gt;
</span><span class="cx"> &lt;input type=&quot;button&quot; class=&quot;button&quot; value=&quot;&lt;?php esc_attr_e('Select a Color'); ?&gt;&quot; id=&quot;pickcolor&quot; /&gt;
</span><del>-
</del><span class="cx"> &lt;div id=&quot;colorPickerDiv&quot; style=&quot;z-index: 100; background:#eee; border:1px solid #ccc; position:absolute; display:none;&quot;&gt;&lt;/div&gt;
</span><span class="cx"> &lt;/fieldset&gt;&lt;/td&gt;
</span><span class="cx"> &lt;/tr&gt;
</span><del>-
</del><ins>+&lt;?php if ( get_background_image() ) : ?&gt;
</ins><span class="cx"> &lt;tr valign=&quot;top&quot;&gt;
</span><del>-&lt;th scope=&quot;row&quot;&gt;&lt;?php _e( 'Background Position' ); ?&gt;&lt;/th&gt;
</del><ins>+&lt;th scope=&quot;row&quot;&gt;&lt;?php _e( 'Position' ); ?&gt;&lt;/th&gt;
</ins><span class="cx"> &lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e( 'Background Position' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;
</span><span class="cx"> &lt;label&gt;
</span><del>-&lt;input name=&quot;background-position&quot; type=&quot;radio&quot; value=&quot;left&quot; &lt;?php checked('left', get_theme_mod('background_position', 'left')); ?&gt; /&gt;
</del><ins>+&lt;input name=&quot;background-position-x&quot; type=&quot;radio&quot; value=&quot;left&quot;&lt;?php checked('left', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;
</ins><span class="cx"> &lt;?php _e('Left') ?&gt;
</span><span class="cx"> &lt;/label&gt;
</span><span class="cx"> &lt;label&gt;
</span><del>-&lt;input name=&quot;background-position&quot; type=&quot;radio&quot; value=&quot;center&quot; &lt;?php checked('center', get_theme_mod('background_position', 'left')); ?&gt; /&gt;
</del><ins>+&lt;input name=&quot;background-position-x&quot; type=&quot;radio&quot; value=&quot;center&quot;&lt;?php checked('center', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;
</ins><span class="cx"> &lt;?php _e('Center') ?&gt;
</span><span class="cx"> &lt;/label&gt;
</span><span class="cx"> &lt;label&gt;
</span><del>-&lt;input name=&quot;background-position&quot; type=&quot;radio&quot; value=&quot;right&quot; &lt;?php checked('right', get_theme_mod('background_position', 'left')); ?&gt; /&gt;
</del><ins>+&lt;input name=&quot;background-position-x&quot; type=&quot;radio&quot; value=&quot;right&quot;&lt;?php checked('right', get_theme_mod('background_position_x', 'left')); ?&gt; /&gt;
</ins><span class="cx"> &lt;?php _e('Right') ?&gt;
</span><span class="cx"> &lt;/label&gt;
</span><span class="cx"> &lt;/fieldset&gt;&lt;/td&gt;
</span><span class="lines">@@ -262,10 +262,10 @@
</span><span class="cx"> &lt;td&gt;&lt;fieldset&gt;&lt;legend class=&quot;screen-reader-text&quot;&gt;&lt;span&gt;&lt;?php _e( 'Repeat' ); ?&gt;&lt;/span&gt;&lt;/legend&gt;
</span><span class="cx"> &lt;label&gt;
</span><span class="cx"> &lt;select name=&quot;background-repeat&quot;&gt;
</span><del>-        &lt;option value=&quot;no-repeat&quot; &lt;?php selected('no-repeat', get_theme_mod('background_repeat', 'repeat')); ?&gt; &gt;&lt;?php _e('No repeat'); ?&gt;&lt;/option&gt;
-        &lt;option value=&quot;repeat&quot; &lt;?php selected('repeat', get_theme_mod('background_repeat', 'repeat')); ?&gt;&gt;&lt;?php _e('Tile'); ?&gt;&lt;/option&gt;
-        &lt;option value=&quot;repeat-x&quot; &lt;?php selected('repeat-x', get_theme_mod('background_repeat', 'repeat')); ?&gt;&gt;&lt;?php _e('Tile Horizontally'); ?&gt;&lt;/option&gt;
-        &lt;option value=&quot;repeat-y&quot; &lt;?php selected('repeat-y', get_theme_mod('background_repeat', 'repeat')); ?&gt;&gt;&lt;?php _e('Tile Vertically'); ?&gt;&lt;/option&gt;
</del><ins>+        &lt;option value=&quot;no-repeat&quot;&lt;?php selected('no-repeat', get_theme_mod('background_repeat', 'repeat')); ?&gt; &gt;&lt;?php _e('No repeat'); ?&gt;&lt;/option&gt;
+        &lt;option value=&quot;repeat&quot;&lt;?php selected('repeat', get_theme_mod('background_repeat', 'repeat')); ?&gt;&gt;&lt;?php _e('Tile'); ?&gt;&lt;/option&gt;
+        &lt;option value=&quot;repeat-x&quot;&lt;?php selected('repeat-x', get_theme_mod('background_repeat', 'repeat')); ?&gt;&gt;&lt;?php _e('Tile Horizontally'); ?&gt;&lt;/option&gt;
+        &lt;option value=&quot;repeat-y&quot;&lt;?php selected('repeat-y', get_theme_mod('background_repeat', 'repeat')); ?&gt;&gt;&lt;?php _e('Tile Vertically'); ?&gt;&lt;/option&gt;
</ins><span class="cx"> &lt;/select&gt;
</span><span class="cx"> &lt;/label&gt;
</span><span class="cx"> &lt;/fieldset&gt;&lt;/td&gt;
</span><span class="lines">@@ -284,7 +284,7 @@
</span><span class="cx"> &lt;/label&gt;
</span><span class="cx"> &lt;/fieldset&gt;&lt;/td&gt;
</span><span class="cx"> &lt;/tr&gt;
</span><del>-
</del><ins>+&lt;?php endif; // get_background_image() ?&gt;
</ins><span class="cx"> &lt;/tbody&gt;
</span><span class="cx"> &lt;/table&gt;
</span><span class="cx"> 
</span></span></pre></div>
<a id="trunkwpadminjscustombackgrounddevjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/custom-background.dev.js (14683 => 14684)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/custom-background.dev.js        2010-05-16 03:49:50 UTC (rev 14683)
+++ trunk/wp-admin/js/custom-background.dev.js        2010-05-16 05:17:57 UTC (rev 14684)
</span><span class="lines">@@ -12,8 +12,7 @@
</span><span class="cx">         });
</span><span class="cx"> 
</span><span class="cx">         jQuery('#background-color').keyup(function() {
</span><del>-                var _hex = jQuery('#background-color').val();
-                var hex = _hex;
</del><ins>+                var _hex = jQuery('#background-color').val(), hex = _hex;
</ins><span class="cx">                 if ( hex[0] != '#' )
</span><span class="cx">                         hex = '#' + hex;
</span><span class="cx">                 hex = hex.replace(/[^#a-fA-F0-9]+/, '');
</span><span class="lines">@@ -23,17 +22,13 @@
</span><span class="cx">                         pickColor( hex );
</span><span class="cx">         });
</span><span class="cx"> 
</span><del>-        jQuery('input[name=&quot;background-position&quot;]').change(function() {
-                jQuery('#custom-background-image').css('background-position', 'top ' + jQuery(this).val());
</del><ins>+        jQuery('input[name=&quot;background-position-x&quot;]').change(function() {
+                jQuery('#custom-background-image').css('background-position', jQuery(this).val() + ' top');
</ins><span class="cx">         });
</span><span class="cx"> 
</span><span class="cx">         jQuery('select[name=&quot;background-repeat&quot;]').change(function() {
</span><span class="cx">                 jQuery('#custom-background-image').css('background-repeat', jQuery(this).val());
</span><span class="cx">         });
</span><del>-        
-        jQuery('input[name=&quot;background-attachment&quot;]').change(function() {
-                jQuery('#custom-background-image').css('background-attachment', jQuery(this).val());
-        });
</del><span class="cx"> 
</span><span class="cx">         farbtastic = jQuery.farbtastic('#colorPickerDiv', function(color) {
</span><span class="cx">                 pickColor(color);
</span></span></pre></div>
<a id="trunkwpadminjscustombackgroundjs"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/js/custom-background.js (14683 => 14684)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/js/custom-background.js        2010-05-16 03:49:50 UTC (rev 14683)
+++ trunk/wp-admin/js/custom-background.js        2010-05-16 05:17:57 UTC (rev 14684)
</span><span class="lines">@@ -1 +1 @@
</span><del>-var farbtastic;function pickColor(a){farbtastic.setColor(a);jQuery(&quot;#background-color&quot;).val(a);jQuery(&quot;#custom-background-image&quot;).css(&quot;background-color&quot;,a)}jQuery(document).ready(function(){jQuery(&quot;#pickcolor&quot;).click(function(){jQuery(&quot;#colorPickerDiv&quot;).show()});jQuery(&quot;#background-color&quot;).keyup(function(){var b=jQuery(&quot;#background-color&quot;).val();var a=b;if(a[0]!=&quot;#&quot;){a=&quot;#&quot;+a}a=a.replace(/[^#a-fA-F0-9]+/,&quot;&quot;);if(a!=b){jQuery(&quot;#background-color&quot;).val(a)}if(a.length==4||a.length==7){pickColor(a)}});jQuery('input[name=&quot;background-position&quot;]').change(function(){jQuery(&quot;#custom-background-image&quot;).css(&quot;background-position&quot;,&quot;top &quot;+jQuery(this).val())});jQuery('select[name=&quot;background-repeat&quot;]').change(function(){jQuery(&quot;#custom-background-image&quot;).css(&quot;background-repeat&quot;,jQuery(this).val())});jQuery('input[name=&quot;background-attachment&quot;]').change(function(){jQuery(&quot;#custom-background-image&quot;).css(&quot;background-attachment&quot;,jQuery(this).val())});farbtastic=jQuery.farbtastic(&quot;#colorPickerDiv&quot;,function(a){pickColor(a)});pickColor(jQuery(&quot;#background-color&quot;).val());jQuery(document).mousedown(function(){jQuery(&quot;#colorPickerDiv&quot;).each(function(){var a=jQuery(this).css(&quot;display&quot;);if(a==&quot;block&quot;){jQuery(this).fadeOut(2)}})})});
</del><span class="cx">\ No newline at end of file
</span><ins>+var farbtastic;function pickColor(a){farbtastic.setColor(a);jQuery(&quot;#background-color&quot;).val(a);jQuery(&quot;#custom-background-image&quot;).css(&quot;background-color&quot;,a)}jQuery(document).ready(function(){jQuery(&quot;#pickcolor&quot;).click(function(){jQuery(&quot;#colorPickerDiv&quot;).show()});jQuery(&quot;#background-color&quot;).keyup(function(){var b=jQuery(&quot;#background-color&quot;).val(),a=b;if(a[0]!=&quot;#&quot;){a=&quot;#&quot;+a}a=a.replace(/[^#a-fA-F0-9]+/,&quot;&quot;);if(a!=b){jQuery(&quot;#background-color&quot;).val(a)}if(a.length==4||a.length==7){pickColor(a)}});jQuery('input[name=&quot;background-position-x&quot;]').change(function(){jQuery(&quot;#custom-background-image&quot;).css(&quot;background-position&quot;,jQuery(this).val()+&quot; top&quot;)});jQuery('select[name=&quot;background-repeat&quot;]').change(function(){jQuery(&quot;#custom-background-image&quot;).css(&quot;background-repeat&quot;,jQuery(this).val())});farbtastic=jQuery.farbtastic(&quot;#colorPickerDiv&quot;,function(a){pickColor(a)});pickColor(jQuery(&quot;#background-color&quot;).val());jQuery(document).mousedown(function(){jQuery(&quot;#colorPickerDiv&quot;).each(function(){var a=jQuery(this).css(&quot;display&quot;);if(a==&quot;block&quot;){jQuery(this).fadeOut(2)}})})});
</ins><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkwpincludesscriptloaderphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/script-loader.php (14683 => 14684)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/script-loader.php        2010-05-16 03:49:50 UTC (rev 14683)
+++ trunk/wp-includes/script-loader.php        2010-05-16 05:17:57 UTC (rev 14684)
</span><span class="lines">@@ -405,9 +405,8 @@
</span><span class="cx">                         'warnDeleteMenuItem' =&gt; __( &quot;You are about to permanently delete this menu item. \n 'Cancel' to stop, 'OK' to delete.&quot; ),
</span><span class="cx">                 ) );
</span><span class="cx"> 
</span><del>-                $scripts-&gt;add( 'custom-background', &quot;/wp-admin/js/custom-background$suffix.js&quot;, array('farbtastic'), '20100321' );
</del><ins>+                $scripts-&gt;add( 'custom-background', &quot;/wp-admin/js/custom-background$suffix.js&quot;, array('farbtastic'), '20100516' );
</ins><span class="cx">                 $scripts-&gt;add_data( 'custom-background', 'group', 1 );
</span><del>-                // See wp_just_in_time_script_localization() for translation data for this object
</del><span class="cx">         }
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="lines">@@ -529,9 +528,6 @@
</span><span class="cx">                 'l10n_print_after' =&gt; 'try{convertEntities(autosaveL10n);}catch(e){};'
</span><span class="cx">         ) );
</span><span class="cx"> 
</span><del>-        wp_localize_script( 'custom-background', 'customBackgroundL10n', array(
-                'backgroundcolor' =&gt; '#' . get_background_color(),
-        ) );
</del><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span></span></pre></div>
<a id="trunkwpincludesthemephp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/theme.php (14683 => 14684)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/theme.php        2010-05-16 03:49:50 UTC (rev 14683)
+++ trunk/wp-includes/theme.php        2010-05-16 05:17:57 UTC (rev 14684)
</span><span class="lines">@@ -1553,7 +1553,7 @@
</span><span class="cx">                         $repeat = 'background-repeat: repeat;';
</span><span class="cx">         }
</span><span class="cx"> 
</span><del>-        switch ( get_theme_mod('background_position', 'left') ) {
</del><ins>+        switch ( get_theme_mod('background_position_x', 'left') ) {
</ins><span class="cx">                 case 'center':
</span><span class="cx">                         $position = 'background-position: top center;';
</span><span class="cx">                         break;
</span></span></pre>
</div>
</div>

</body>
</html>