Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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'
]
};
```