Sha256: 0a8f8662affd128e7ffbf898fbd44db7d2bfe05f91d999c067078da4a3e38d6d

Contents?: true

Size: 777 Bytes

Versions: 2

Compression:

Stored size: 777 Bytes

Contents

	/**
	Sideshow Settings

	@@object config
	**/
	SS.config = {};

	/**
	Application route to persists user preferences

	@@field userPreferencesRoute
	@type String
	@@unused
	@@todo Implement persistence logic
	**/
	SS.config.userPreferencesRoute = null;

	/**
	Logged in user

	@@field loggedInUser
	@type String
	@@unused
	**/
	SS.config.loggedInUser = null;

	/**
	Chosen language for sideshow interface

	@@field language
	@type String
	**/
	SS.config.language = "en";

	/**
	Defines if the intro screen (the tutorial list) will be	skipped when there's just one 
	tutorial available. This way, when Sideshow is invoked, the first step is directly shown.

	@@field autoSkipIntro
	@type boolean
	**/
	SS.config.autoSkipIntro = false;

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sideshow-0.4.2 src/general/config.js
sideshow-0.4.1 src/general/config.js