-
Notifications
You must be signed in to change notification settings - Fork 7
/
hxGlobalOptions.js
34 lines (30 loc) · 1.14 KB
/
hxGlobalOptions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/********************************************/
// Global options for hx.js
// If you haven't changed anything here, it's showing you the default options.
// Change things here to set them course-wide.
// To reset to default, just remove them or reupload the original
// version of this file from the GitHub repository.
/********************************************/
var hxGlobalOptions = {
hasGlobalOptions: true,
markExternalLinks: true,
useBackpack: true,
/********************************************/
// Slick Image Slider Options
/********************************************/
slickOptions: {},
slickNavOptions: {},
slickBigOptions: {},
textSliderOptions: {},
// Pop-up questions and links for videos
PUPOptions: {},
VidLinkOptions: {},
// Custom emoji for Emoji Response questions (not yet implemented)
// Use this format:
// [ { 'emoji': '✓', 'alt': 'I understand' },
// { 'emoji': '❓', 'alt': 'I am confused' },
// { 'emoji': '😯', 'alt': 'I am surprised' },
// { 'emoji': '🤔', 'alt': 'I am skeptical' },
// { 'emoji': '😴', 'name': 'I am bored' } ]
custom_emoji: []
};