Comment on page
Get Project Settings
<Object|String|null> LViS.Project.getSettings([<String> name])
Returns list of values for project settings which user can specify to customise an instance of an app connected to a specific project:
object
of all settings if name wasn't setstring
value if name was passed as argumentnull
if no setting was found for the specified name
var allSettings = LViS.Project.getSettings();
// {
// foo: "1",
// bar: "2",
// ...
// baz: "N"
// }
var foo = LViS.Project.getSettings('foo');
// "1"
var foo = LViS.Project.getSettings('qux');
// null
Last modified 4yr ago