Project

help_tips

0.0
No release in over 3 years
Low commit activity in last 3 years
An easy way to add help tips to your site.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

< 5.0, >= 3.2
 Project Readme

Requirements

Built for use with Twitter Bootstrap view template

Setup

In your gemfile

gem 'help_tips'

In your database

  create_table :tip_hides do |t|
    t.integer :user_id
    t.string :identifier

    t.timestamps
  end

Usage

In your View

<% help_tip 'Getting Started' do %>
  <p>Click a block's name to view its attached files and detailed information; or use the search box to filter the list of blocks.</p>
  <p>Try typing <code>H1</code> into the search box and clicking <code>risk H1</code> when it appears to find all H1 blocks.</p>
  <p>Click the <span class="btn"><i class="icon-question-sign"></i> Help</span> button for more information on how to search.</p>
<% end %>