BSDropdownShim.js 355 B

1234567891011121314
  1. 'use strict';
  2. /**
  3. * An AMD wrapper around bootstrap ui for loaders (like DOJO) that don't
  4. * support shims
  5. *
  6. * TODO: do a bootstrap layer
  7. */
  8. define(['text!bootstrap/js/tooltip.js', 'text!bootstrap/js/dropdown.js', 'jquery'], function (sc2, sc3) {
  9. new Function(sc2)();
  10. new Function(sc3)();
  11. return;
  12. });
  13. //# sourceMappingURL=BSDropdownShim.js.map