angularjs,datetimepicker,mobile-angular-ui
This require: ['?^ngModel'], looks strange to me... If you require a thing, in my opinion, it can't be optional, right? Try using require: 'ngModel', and let me know if it works. You need to use this: dpElement.on('changeDate', function(ev) { //need to run digest cycle for applying bindings scope.$apply(function() { ngModelCtrl.$setViewValue(ev.date);...
angularjs,yeoman-generator-angular,mobile-angular-ui
Bingo. The problem actually came from a clash between mobile-angular-ui and bootstrap, as I was using both of them for the mobile and desktop views respectively. Since I use a very limited subset of bootstrap, I decided to remove all my bootstrap dependencies and only work with mobile-angular-ui which also...