-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.js
More file actions
executable file
·73 lines (70 loc) · 1.96 KB
/
welcome.js
File metadata and controls
executable file
·73 lines (70 loc) · 1.96 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
var botui = new BotUI('welcome');
botui.message.add({
delay: 100,
loading: true,
content: 'Welcome to <a href="https://Deepertise.com">Deepertise!</a><br/>'
}).then(function () {
botui.message.add({
delay: 1000,
human: true,
loading: true,
content: 'What is your vision?'
}).then(function () {
botui.message.add({
delay: 1000,
loading: true,
content: 'We are building an intelligent interactive marketing platform,'
}).then(function(){
botui.message.add({
delay: 1500,
loading: true,
content: 'which will enable users to have a delightful, instantaneous, one-on-one interaction with brands, using their preferred channel.'
}).then(function () {
botui.message.add({
delay: 2000,
human: true,
loading: true,
content: 'Who is behind Deepertise?'
}).then(function(){
botui.message.add({
delay: 2000,
loading: true,
content: 'Deepertise\'s team includes PhDs from top universities in the US and is backed by top sillicon valley\'s investors.'
}).then(function () {
botui.message.add({
delay: 2000,
human: true,
loading: true,
content: 'Can I see a demo?'
}).then(function(){
botui.message.add({
delay: 1500,
loading: true,
content: 'Sorry! We are currently working in stealth mode!'
}).then(function(){
botui.message.add({
delay: 1000,
loading: true,
content: ''
});
});
});
});
});
});
});
});
});
// botui.message.add({
// human: true,
// content: 'Hello World from human!'
// }).then(function () {
// botui.action.text({
// action: {
// button: {
// icon: 'check',
// label: 'Submit'
// }
// }
// });
// });