UNPKG

ember-cli-bootstrap-datetimepicker

Version:

Date and time picker component for Ember CLI based on bootstrap-datetimepicker.

15 lines (11 loc) 384 B
'use strict'; module.exports = { name: require('./package').name, included: function(app) { this._super.included(app); // Import unminified css and js let basePath = 'node_modules/btecu-eonasdan-bootstrap-datetimepicker'; app.import(`${basePath}/build/css/bootstrap-datetimepicker.css`); app.import(`${basePath}/src/js/bootstrap-datetimepicker.js`); } };