Automattic / Iris

A(n awesome) Color Picker
GNU General Public License v2.0
259 stars 67 forks source link

Single click on Color Selector Appends # to URL #56

Open jeryj opened 8 years ago

jeryj commented 8 years ago

If you just Click the circle selector instead of Dragging it, it will append a # to the URL, causing the page to jump to the top.

Temporary fix until it's fixed in the repo:

jQuery(document).ready(function($){
    $('#color-picker').iris();

   // after initializing iris on your element(s)
   $('.iris-square-value').click(function(e) {
       e.preventDefault();
   });
});