# This patch file was generated by NetBeans IDE
# This patch can be applied using context Tools: Apply Diff Patch action on respective folder.
# It uses platform neutral UTF-8 encoding.
# Above lines and this line are ignored by the patching process.
Index: color/color.js
--- color/color.js Base (1.18)
+++ color/color.js Locally Modified (Based On 1.18)
@@ -220,6 +220,15 @@
         locks.push(lock);
       };
 
+      // Make clicks on HTML preview elements with classnames
+      // "hotspot-palette-[key]" select the palette input text field.
+      var key = this.key;
+      $('#preview .hotspot-palette-' + this.key)
+      .click( function(event) {
+        $("div.form-item-palette-" + key +" input").trigger('focus');
+        event.stopPropagation();
+      });
+
       // Add hook.
       var hook = $('<div class="hook"></div>');
       $(this).after(hook);
Index: color/preview.html
--- color/preview.html Base (1.1)
+++ color/preview.html Locally Modified (Based On 1.1)
@@ -1,7 +1,7 @@
 <div id="preview">
-  <div id="text">
-    <h2>Lorem ipsum dolor</h2>
-    <p>Sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud <a href="#">exercitation ullamco</a> laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
+  <div id="text" class="hotspot-palette-text">
+    <h2 class="hotspot-palette-base">Lorem ipsum dolor</h2>
+    <p class="hotspot-palette-text">Sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud <a href="#" class="hotspot-palette-link">exercitation ullamco</a> laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
   </div>
   <div id="img"></div>
 </div>
