Skip to content

Instantly share code, notes, and snippets.

@ojacquemart
Created August 3, 2014 07:22
Show Gist options
  • Save ojacquemart/b409b5bb6aaa0dad71c2 to your computer and use it in GitHub Desktop.
Save ojacquemart/b409b5bb6aaa0dad71c2 to your computer and use it in GitHub Desktop.
ionic cordova datepicker
$scope.showDate = function() {
event.stopPropagation();
if (window.plugins && window.plugins.datePicker) {
window.plugins.datePicker.show({
date : $scope.date,
mode : 'time'
}, function(date) {
$scope.$apply(function() {
// Store date
});
});
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment