Szabolcs Toth
Szabolcs Toth

Reputation: 63

Refills modal doesn't work on Rails 4.2.4

I have installed bourbon, neat and refills and would like to use modal window. Following the instructions I made:

rails generate refills:import modal

I have the modal partial and added to the page

<%= render 'refills/modal' %>

The result:

enter image description here

Any idea what I missed? Thank you!

Upvotes: 1

Views: 165

Answers (1)

stephenmurdoch
stephenmurdoch

Reputation: 34643

You need to add the following code to application.js

// require refills/modal

And then you need to add the following line to application.scss:

@import 'refills/modal';

That should do it.

Upvotes: 1

Related Questions