Skip to content

Instantly share code, notes, and snippets.

View chrisasmith's full-sized avatar

Christopher Smith chrisasmith

View GitHub Profile
(function () {
var dateTimeController = function ($scope, $rootScope) {
$scope.vm = {
message: "Bootstrap DateTimePicker Directive",
dateTime: {}
};
$scope.$watch('change', function(){
console.log($scope.vm.dateTime);
});