aviav / pageflow-linkmap-page

Hotspot page type

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Pageflow Linkmap Page

Gem Version Build Status

Page type to display customizable link areas to internal/external pages and inline audio players.

Installation

Add this line to your application's Gemfile:

gem 'pageflow-linkmap-page'
gem 'pageflow-external-links' # needed to copy the migration contained within

Register the page type inside the configure block in config/initializers/pageflow.rb

Pageflow.configure do |config|
  config.plugin(Pageflow::LinkmapPage.plugin)
end

Mount the engine:

# config/routes.rb
mount Pageflow::LinkmapPage::Engine, at: '/linkmap_page'

Include javascripts and stylesheets:

# app/assets/javascripts/pageflow/application.js
//= require pageflow/linkmap_page

# app/assets/javascripts/pageflow/editor.js
//= require pageflow/linkmap_page/editor

# app/assets/stylesheets/pageflow/application.scss
@import "pageflow/linkmap_page";

# app/assets/stylesheets/pageflow/editor.scss
@import "pageflow/linkmap_page/editor";

Import default theme additions:

# app/assets/stylesheets/pageflow/themes/default.scss

@import "pageflow/linkmap_page/themes/default";

/* Display arrows left and right to indicate panorama */
@import "pageflow/linkmap_page/themes/default/scroll_indicators";

Install dependencies:

bundle install

Install and run migrations:

$ rake pageflow_linkmap_page:install:migrations
$ rake db:migrate

Then follow the installation instructions for the pageflow-external-links gem.

Restart the application server and enable the corresponding page type feature for entries in the tab features.

Troubleshooting

If you run into problems while installing the page type, please also refer to the Troubleshooting wiki page in the Pageflow repository. If that doesn't help, consider filing an issue.

Contributing Locales

Edit the translations directly on the pageflow-linkmap-page locale project.

About

Hotspot page type


Languages

Language:JavaScript 70.5%Language:CSS 14.5%Language:Ruby 11.8%Language:HTML 3.3%