Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cconstantin/angular-ui-bootstrap-rails
Rails wrapper for angular-ui bootstrap library
https://github.com/cconstantin/angular-ui-bootstrap-rails
Last synced: 6 days ago
JSON representation
Rails wrapper for angular-ui bootstrap library
- Host: GitHub
- URL: https://github.com/cconstantin/angular-ui-bootstrap-rails
- Owner: cconstantin
- License: other
- Created: 2013-02-06T17:17:51.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2022-03-08T03:12:48.000Z (almost 3 years ago)
- Last Synced: 2024-12-28T21:13:04.405Z (13 days ago)
- Language: Ruby
- Size: 458 KB
- Stars: 95
- Watchers: 4
- Forks: 35
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# angular-ui-bootstrap-rails
angular-ui-bootstrap-rails wraps the [Angular.js UI Bootstrap](http://angular-ui.github.com/bootstrap) library for use in Rails 3.1 and above. Assets will minify automatically during production.
angular-ui-bootstrap is at v2.4.0
## Usage
Add the following to your gemfile:
gem 'angular-ui-bootstrap-rails'
Add the following directive to your Javascript manifest file (application.js):
//= require angular-ui-bootstrap
If you would like to use the default bootstrap templates, use the following directive instead
//= require angular-ui-bootstrap-tpls
You may need to add 'ui.bootstrap' into your app declaration for exampleapp = angular.module('MyApp', ["ui.bootstrap"])
Gem based on Angularjs-rails(https://github.com/hiravgandhi/angularjs-rails) by Hirav Gandhi