Ember Bootstrap is set of UI elements styled using Twitter Bootstrap (currently version 2) toolkit to use with Ember.js. The ultimate goal is to provide all elements from the Bootstrap toolkit.
Please respect the following convention : bug reports go in the issue tracker. Feature and big refactoring discussions go in the google group.
- Modal panes - Bootstrap.ModalPane
- Nav lists - Bootstrap.NavList
- Pills - Bootstrap.Pills
- Tabs (header) - Bootstrap.Tabs
- Alert messages - Bootstrap.AlertMessage
- Block alert messages - Bootstrap.BlockAlertMessage
- Progress bars - Bootstrap.ProgressBar
- Badges - Bootstrap.Badge
- Labels - Bootstrap.Label
- Wells - Bootstrap.Well
- Badges - Bootstrap.Badge
- Labels - Bootstrap.Label
- Wells - Bootstrap.Well
- Text Field - Bootstrap.Forms.TextField
- Text Area - Bootstrap.Forms.TextArea
- Select - Bootstrap.Forms.Select
Bootstrap.ModalPane.popup({heading: "Sample modal pane",message: "Sample message...",primary: "OK",secondary: "Cancel",showBackdrop: true,callback: function(opts,event){if(opts.primary){// primary button was pressed}elseif(opts.secondary){// secondary button was pressed}else{// close was pressed}}});<scripttype="text/x-handlebars">{{viewBootstrap.NavListcontentBinding="SampleApp.navController.content"selectionBinding="SampleApp.navController.selection"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.TabscontentBinding="SampleApp.tabsController.content"selectionBinding="SampleApp.tabsController.selection"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.PillscontentBinding="SampleApp.pillsController.content"selectionBinding="SampleApp.pillsController.selection"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.AlertMessagetype="success"message="You did it!"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.ProgressBarisStriped=trueisAnimated=trueprogressBinding="SampleApp.progressController.progress"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.Labeltype="important"content="Important"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.Badgetype="success"contentBinding="SampleApp.TodoController.completed"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.Wellcontent="Important note about Ember and Bootstrap"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.BreadcrumbscontentBinding="SampleApp.breadcrumbsController.content"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.PagercontentBinding="SampleApp.pagerController.content"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.PaginationcontentBinding="SampleApp.paginationController.content"selectionBinding="SampleApp.paginationController.selection"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.Forms.TextFieldvalueBinding="myObject.content"label="content"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.Forms.TextAreavalueBinding="myObject.content"label="content"}}</script><scripttype="text/x-handlebars">{{viewBootstrap.Forms.SelectcontentBinding="content"selectionBinding="selected"label="content" optionLabelPath: 'content.name',optionValuePath: 'content.internalName'}}</script>- Run
raketo build Ember Bootstrap. Three builds will be placed in thedist/directory.
ember-bootstrap.js,ember-bootstrap.min.jsandember-bootstrap.prod.js- unminified and minified builds as well as a production ready build with assertions, deprecations and warnings stripped.
If you are building under Linux, you will need a JavaScript runtime for minification.
You can either install nodejs or gem install therubyracer.
To run unit tests, run bundle exec rackup from the root directory and visit
http://localhost:9292/tests/index.html?package=ember-bootstrap.
MIT License. Copyright 2012 Jiri Zajpt, Damien Mathieu
- Jiri Zajpt jz@blueberry.cz
- Damien Mathieu 42@dmathieu.com
- Franck Verrot franck@verrot.fr
- Bradley Priest hello@bradleypriest.com
