From d5c85104a1a95ab0a9004139baa57bcd6d93f21b Mon Sep 17 00:00:00 2001 From: Dmitry Nadsadin <30842476+nadsadin@users.noreply.github.com> Date: Thu, 15 Feb 2018 00:38:46 +0300 Subject: [PATCH] Update README.md Manually include jquery to the application instead of including to gem for a more flexible solution. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index f27ee04..58176de 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,13 @@ TalkingStick is built as a Rails Engine, and so follows those conventions. Add the following to your application's `assets/javascripts/application.js`: ```javascript + //= require jquery + //= require talking_stick/application + ``` + for jquery3: + + ```javascript + //= require jquery3 //= require talking_stick/application ```