-1

Hello All Can Anybody suggest me a simple timepicker popup for angular js, I tried Following timepicker http://embed.plnkr.co/2ReOvuuhtNNcgtmWycOt/ http://www.mytechtip.com/2014/03/angularjs-timepiker-popup-ui-bootstrap.html but getting the injection errors, Is there a simplest way to implement it.?

You can suggest any simple timepicker popup to me, considering that I am new to angular js enter image description here

Vish
  • 280
  • 2
  • 18

1 Answers1

0

You need to inject timepicker in your app.

Like this:

angular.module('timepickerDemo', [ 'timepickerPop' ]).controller(
     'DemoCtrl', function($scope) {
      $scope.time1 = new Date();
      $scope.showMeridian = true;
});
Bojan B
  • 2,091
  • 4
  • 18
  • 26
Dayachand Patel
  • 469
  • 4
  • 12