Fix #5648 - New design for post release report
[raphael] / plugins / jquery.colorwheel.js
1 (function ($, R) {
2     $.fn.colorwheel = function (size, initcolor) {
3         if (R) {
4             var offset = this.offset();
5             return R.colorwheel(offset.left, offset.top, size, initcolor, this[0]);
6         }
7         return null;
8     };
9 })(window.jQuery, window.Raphael);