vitalets / combodate

Dropdown date and time picker
http://vitalets.github.com/combodate
207 stars 82 forks source link

Make library UMD compatible for require/browserify environments #51

Closed ghost closed 9 months ago

ghost commented 8 years ago

Support for requirejs and browserify environments including moment.js in the dependencies. The factory does not return anything as the library attaches itself to the global $.fn object.

Example :

// require.js
define(['combodate'], function () {
  $('input').combodate();
});