Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geersch/ui.cg
AngularJS input directives
https://github.com/geersch/ui.cg
Last synced: 13 days ago
JSON representation
AngularJS input directives
- Host: GitHub
- URL: https://github.com/geersch/ui.cg
- Owner: geersch
- License: mit
- Created: 2014-07-24T22:54:59.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-02T16:39:10.000Z (almost 7 years ago)
- Last Synced: 2025-01-12T13:48:48.835Z (14 days ago)
- Language: JavaScript
- Homepage: http://geersch.github.io/ui.cg
- Size: 622 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ui.cg
A number input control for AngularJS apps. Bootstrap 2.x is used for the template.
## API Reference
An API reference can be here:
[http://geersch.github.io/ui.cg/#/api](http://geersch.github.io/ui.cg/#/api)
## Development
#### Prepare your environment
* Install [Node.js](http://nodejs.org/) and NPM
* Install global dev dependencies: `npm install -g grunt-cli karma`
* Install local dev dependencies: `npm install` while current directory is ui.cg repository#### Build
* Build the project: `grunt build`
Distributables (ui-cg-.js & ui-cg-.min.js) will be created by default. Once built, you only need to add the module to your AngularJS module:
```javascript
angular.module('myModule', ['ui.cg']);
```Check the Grunt build file for other tasks that are defined for this project.