javascript - Rails emoji picker won't load for Simple_Form textarea -


i'm using gem called rails_emoji_picker implement emoji solution project. gem not loading emoji picker inside of textarea, though followed instructions given. see no errors in javascript debugging console. how can make emoji picker display inside of textarea? i'm using rails 5. https://github.com/id25/rails_emoji_picker

post _form.html.erb

    <div class=container"> <%= simple_form(@post, multipart: true, remote: true) |f| %>         <div class="row">         <div class="col-6">         <p class="emoji-picker-container">         <%= f.input :body_text, class: 'form-control', label: false, id: 'text-area-reset', placeholder: 'write something', data: {emojiable: true} %>         </p>     </div>     </div>         <div class="row">         <div class="col-6>         <%= f.button :submit, 'post it', class: 'btn btn-outline-success' %>         </div>         </div> <% end %>         </div> 


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -