Skip to content
/ modal-me Public

Easily create a modal for your existing views using ajax

License

Notifications You must be signed in to change notification settings

isieo/modal-me

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Modal::Me

A simple gem to use bootstrap's modal for actions in rails.

Note that i am using Bootstrap for the modal window.

if you don't use bootstrap just ommit bootstrap's css and write your own css.

See app/views/shared/_modal_me.html.erb for the html markup

Installation

Add this line to your application's Gemfile:

gem 'modal-me', git: '[email protected]:isieo/modal-me.git'

And then execute:

$ bundle

In app/assets/application.js after :

//= require jquery

Add

//= require modal_me

Usage

in your view

// the format is almost same as link_to except that the last argument is the title of the modal
<%= modal_me_to 'Edit', edit_user_path(user), {:class=>'btn btn-primary'}, "Edit User" %>

in your controller:

def show
  @user = User.find(params[:id])
  respond_to do |format|
    format.html
    format.text { render 'show.html',layout: false  }
  end
end

This will return you the modal without the page layout.

in your layout add:

render 'shared/modal_me'

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Easily create a modal for your existing views using ajax

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published