react-toastr icon indicating copy to clipboard operation
react-toastr copied to clipboard

jquery dependency

Open luisrudge opened this issue 9 years ago • 2 comments

sorry. It isn't that clear to me. Does this library depends on jquery or not? Thanks!

luisrudge avatar Aug 18 '15 19:08 luisrudge

Depending on which ToastMessageFactory you're using. If you use ReactToastr.ToastMessage.animation like in the example, then no jquery is needed.

tomchentw avatar Aug 19 '15 01:08 tomchentw

FYI, for anyone who might be struggling with this, this is ES5 code that makes the jQuery mixin work:

window.jQuery = require('jquery');
var ToastMessageFactory = React.createFactory(ToastMessage.jQuery);

mchlltt avatar Mar 25 '17 16:03 mchlltt