Skip to content

Instantly share code, notes, and snippets.

View binbin's full-sized avatar
🏠
Working from home

Beta binbin

🏠
Working from home
  • 00:46 (UTC +08:00)
View GitHub Profile
//uses angular-bootstrap-datetimepicker: https://github.com/dalelotts/angular-bootstrap-datetimepicker
angular.module('mymodule')
.directive('myDateTimePicker', function ($ionicPopup) {
return {
restrict: 'E',
template: '<input class="my-date-time-picker" type="text" readonly="readonly" ng-model="formatted_datetime" ng-click="popup()" placeholder="{{placeholder}}">',
scope: {
'title': '@',
'dateModel': '=ngModel',