A DrupalGap module to permit the run-time modification of the URL of the Drupal site to which the app connects.
- Download
- Browse code repository
- Issues (0)
- Star Gazers (0)
- Forks (1)
- Updated: 2017-12-13
Drupal Core:
- 7.x
No 'site_path'
A DupalGap module.
For all information, please see http://drupalgap.org/project/nositepath
Usage
In your settings.js
file specify where nositepath should redirect when in
offline mode. The default is "nositepath".
drupalgap.settings.nositepath = {
offline_redirect: "nositepath"
};
If you would like to have a link to the connection form then add the following
snippet to the list of links defined as part of
drupalgap.settings.menus['main_menu']
in your settings.js file:
{
title: 'Connection',
path: 'nositepath',
options: {
attributes: {'data-icon': 'gear'}
},
},