Can I use the bootstrap 3 date picker component with angular?
I tried following this tutorial but I failed with only the input appearing but no calendar when clicked.
EDIT: This pen somewhat resembles my actual code, and what I wanted was to add the datetime picker. I know there are a few date pickers for angular but the one I linked fits better with my design I believe.
angular.module('materialApp.directives')
.directive('psDatetimePicker', function (moment) {
var format = 'MM/DD/YYYY hh:mm A';
Have I done any obvious mistakes?