Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kelp404/angularjs-bootstrap-datepicker
A Bootstrap3 datepicker for AngularJS.
https://github.com/kelp404/angularjs-bootstrap-datepicker
angularjs bootstrap coffee-script datepicker
Last synced: 20 days ago
JSON representation
A Bootstrap3 datepicker for AngularJS.
- Host: GitHub
- URL: https://github.com/kelp404/angularjs-bootstrap-datepicker
- Owner: kelp404
- License: mit
- Created: 2018-06-24T03:54:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-24T09:41:43.000Z (over 6 years ago)
- Last Synced: 2024-10-10T13:20:42.771Z (about 1 month ago)
- Topics: angularjs, bootstrap, coffee-script, datepicker
- Language: CoffeeScript
- Homepage:
- Size: 26.4 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# angularjs-bootstrap-datepicker
## Installation
```bash
$ bower install angularjs-bootstrap-datepicker -S
```## Start
```html```
## Example
```js
angular.module('your-module', ['bootstrap.datepicker'])
.controller('YourController', ['$scope', function ($scope) {
$scope.form = {
date: null
};
}]);
``````html
Date
```## Options
```js
bootstrap-datepicker = {
format: 'M/d/yyyy',
days: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
months: [
'January',
'February',
'March',
'April',
'May',
'June',
'July',
'August',
'September',
'October',
'November',
'December'
]
};
```