What Steps will reproduce the problem?:
Create a StickyWin.PointyTip with the "draggable" option set to true.
What is the expected output? What do you see instead?
The PointyTip box should be draggable. It is not.
Fix
I used Class.refactor to put a class to makeDraggable() and makeResizable() into the constructor.
StickyWin.PointyTip = Class.refactor(StickyWin.PointyTip,{
'initialize': function(){
this.previous.apply(this, arguments);
if (this.options.draggable) this.makeDraggable();
if (this.options.resizable) this.makeResizable();
}
});