Hi,
The pallet was on the wrong side of the screen on my html page.
I fixed it by changing the picker.js file.
You were using the position of the element, but this isn't exactly correct.
var pos = $this.position(),
My element was nested in some other elements.
I'm now using the offset, which is relative to the window
var pos = $this.offset(),