diff --git a/app/assets/stylesheets/main/help.scss b/app/assets/stylesheets/main/help.scss
deleted file mode 100644
index 3704ac1a..00000000
--- a/app/assets/stylesheets/main/help.scss
+++ /dev/null
@@ -1,52 +0,0 @@
-// BigBlueButton open source conferencing system - http://www.bigbluebutton.org/.
-//
-// Copyright (c) 2016 BigBlueButton Inc. and by respective authors (see below).
-//
-// This program is free software; you can redistribute it and/or modify it under the
-// terms of the GNU Lesser General Public License as published by the Free Software
-// Foundation; either version 3.0 of the License, or (at your option) any later
-// version.
-//
-// BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
-// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-// PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License along
-// with BigBlueButton; if not, see .
-
-.help {
-
- .title {
- padding-bottom: 40px;
- }
-
- .videos-wrapper {
- width: 1000px;
- height: 100%;
- }
-
- .video-btn {
- position: relative;
- width: 304px;
- height: 169px;
- }
-
- img {
- max-width: 100%;
- max-height: 100%;
- }
-
- .video-icon {
- position: absolute;
- left: 0;
- right: 0;
- margin-left: auto;
- margin-right: auto;
- top: 40%;
- text-align: center;
- z-index: 100;
- color: #fff;
- font-size: 40px;
- }
-
-}
diff --git a/app/controllers/help_controller.rb b/app/controllers/help_controller.rb
deleted file mode 100644
index f0669954..00000000
--- a/app/controllers/help_controller.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/.
-#
-# Copyright (c) 2016 BigBlueButton Inc. and by respective authors (see below).
-#
-# This program is free software; you can redistribute it and/or modify it under the
-# terms of the GNU Lesser General Public License as published by the Free Software
-# Foundation; either version 3.0 of the License, or (at your option) any later
-# version.
-#
-# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public License along
-# with BigBlueButton; if not, see .
-
-class HelpController < ApplicationController
- def getting_started
- end
-end
diff --git a/app/views/help/getting_started.html.erb b/app/views/help/getting_started.html.erb
deleted file mode 100644
index 4077c71e..00000000
--- a/app/views/help/getting_started.html.erb
+++ /dev/null
@@ -1,57 +0,0 @@
-<%
-# BigBlueButton open source conferencing system - http://www.bigbluebutton.org/.
-# Copyright (c) 2016 BigBlueButton Inc. and by respective authors (see below).
-# This program is free software; you can redistribute it and/or modify it under the
-# terms of the GNU Lesser General Public License as published by the Free Software
-# Foundation; either version 3.0 of the License, or (at your option) any later
-# version.
-#
-# BigBlueButton is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
-# You should have received a copy of the GNU Lesser General Public License along
-# with BigBlueButton; if not, see .
-%>
-
-
-
-
-
-
<%= t('getting_started_page.title') %>
-
-
-
-
-
diff --git a/app/views/shared/_center_panel.html.erb b/app/views/shared/_center_panel.html.erb
index 58963960..6e92cf0f 100644
--- a/app/views/shared/_center_panel.html.erb
+++ b/app/views/shared/_center_panel.html.erb
@@ -25,7 +25,7 @@
<%= yield :footer %>
- <%= link_to t('help'), help_url %>
+ <%= link_to t('help'), 'http://bigbluebutton.org/videos/', target: '_blank' %>
diff --git a/config/locales/en-us.yml b/config/locales/en-us.yml
index ae8ca32b..4437b715 100644
--- a/config/locales/en-us.yml
+++ b/config/locales/en-us.yml
@@ -71,11 +71,6 @@ en-US:
enter_name: Enter your name
enter_meeting_name: Enter a meeting name to start
footer_html: Powered by %{bbb_link}
- getting_started_page:
- title: Getting Started Quickly
- setting_up_audio: Setting Up Audio
- viewer_overview: Viewer Overview
- presenter_overview: Moderator/Presenter Overview
help: Help
hi_all: Hi Everyone
home_title: Welcome to BigBlueButton
diff --git a/config/routes.rb b/config/routes.rb
index 430a34f9..b4f7501a 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -16,8 +16,6 @@
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
Rails.application.routes.draw do
- get 'help/getting_started', as: :help
-
mount ActionCable.server => '/cable'
resources :users, only: [:edit, :update]
diff --git a/test/controllers/help_controller_test.rb b/test/controllers/help_controller_test.rb
deleted file mode 100644
index 4ea75abd..00000000
--- a/test/controllers/help_controller_test.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require 'test_helper'
-
-class HelpControllerTest < ActionDispatch::IntegrationTest
- test "should get getting_started" do
- get help_url
- assert_response :success
- end
-
-end