commit 9c4b5b4171eb09374d2381932024d6a06778c4df
parent 80879344248572e946cc4af70e54d7c5064aafb7
Author: MTRNord <mtrnord1@gmail.com>
Date: Sun, 27 Mar 2016 22:31:58 +0200
Update tour
Diffstat:
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/web/theme/js/tour.js b/web/theme/js/tour.js
@@ -4,14 +4,18 @@ var tour = new Tour({
{
element: "#server_1",
title: "Title of my step",
- content: "Content of my step"
+ content: "Content of my step",
+ placement: 'bottom'
},
{
element: "#server-data_1",
title: "Title of my step",
- content: "Content of my step"
+ content: "Content of my step",
+ placement: 'bottom'
}
-]});
+],
+backdrop: true
+});
// Initialize the tour
tour.init();