[Frontend] Time Controller Markup and Styling

open #1515
open #117
Significant new vals added to constants files
for datetime picker/calendar;
Styling for calendar, hover and selected states;
Modded DateTimePickerController.js and markup
to allow selection of out-of-month cells;
This commit is contained in:
Charles Hacskaylo
2015-09-24 18:36:56 -07:00
parent 67f627b51f
commit b3da6edd0c
8 changed files with 253 additions and 37 deletions

View File

@ -138,9 +138,9 @@ define(
$scope.ngModel[$scope.field] = m.valueOf();
}
$scope.isSelectable = function (cell) {
return cell.month === month;
};
$scope.isInCurrentMonth = function (cell) {
return cell.month === month;
}
$scope.isSelected = function (cell) {
var date = $scope.date || {};