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

https://github.com/coderberry/flash_helper

Flash Helper
https://github.com/coderberry/flash_helper

Last synced: 8 months ago
JSON representation

Flash Helper

Awesome Lists containing this project

README

          

Flash Helper
============

A simple plugin that displays flash messages within a DIV tag, and ignore
if the flash hash isn't set.

Example
=======

flash[:notice] = "User Created Successfully!"

<%= display_flash(flash) %>
#

User Created Successfully!

Instructions
============

Add the following to your stylesheet:

#flash_notice, #flash_error {
padding: 5px 8px;
margin: 10px 0;
}

#flash_notice {
background-color: #CFC;
border: solid 1px #6C6;
}

#flash_error {
background-color: #FCC;
border: solid 1px #C66;
}

Copyright (c) 2009 Eric Berry, released under the MIT license