Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hanhdt/happy_toastr
Simple toast notifications.
https://github.com/hanhdt/happy_toastr
Last synced: 4 days ago
JSON representation
Simple toast notifications.
- Host: GitHub
- URL: https://github.com/hanhdt/happy_toastr
- Owner: hanhdt
- License: mit
- Created: 2017-10-10T05:18:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-15T11:55:23.000Z (over 6 years ago)
- Last Synced: 2024-04-25T23:22:00.268Z (7 months ago)
- Language: Ruby
- Size: 18.6 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# happy_toastr
A wrapper Rails gem of ToastrJS lib - simple toast notifications.
[Check more configurations](https://github.com/CodeSeven/toastr)## Installation
Add this line to your application's Gemfile:
```ruby
gem 'happy_toastr'
```And then execute:
$bundle
Or install it yourself as:
$gem install happy_toastr
## Usage
### Include javascript and stylesheet
* In the app/assets/javascripts/application.js
```javascript
//= require toastr
```or minified asset
```javascript
//= require toastr.min
```* In the app/assets/stylesheets/applications.css
```css
*= require toastr
```or minified asset
```css
*= require toastr.min
```## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/hanhdt/happy_toastr. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the HappyToastr project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/hanhdt/happy_toastr/blob/master/CODE_OF_CONDUCT.md).