I've been working on a project that uses bililiteRange
a lot, so I added two improvements: plugins and events.
bililiteRange.fn.myplugin = function() {};
or bililiteRange.extend({ myplugin1: function() {}, myplugin2: function(){} });
creates new functions for a bililiteRange (just like with jQuery).
Also, the text
method now triggers an input
event on the element. Only works on browsers that implement CustomEvent
.
Leave a Reply