We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 416d059 + fdce5c8 commit 19e5e75Copy full SHA for 19e5e75
js/adapt-contrib-tutor.js
@@ -29,7 +29,7 @@ define(function(require) {
29
this.$el.html(template(data)).appendTo('#wrapper');
30
_.defer(_.bind(function() {
31
this.showTutor();
32
- this.$('.tutor').css({opacity: 0});
+ this.$('.tutor').css({display: 'block', opacity: 0});
33
}, this));
34
return this;
35
},
less/tutor.less
@@ -8,6 +8,7 @@
8
color: @inverted-foreground-color;
9
z-index: 550;
10
opacity:0;
11
+ display:none;
12
.ie8 & {
13
left:0px;
14
}
templates/tutor.hbs
@@ -16,7 +16,6 @@
16
{{/if}}
17
<div class="tutor-body">
18
<div class="tutor-body-inner">{{{feedbackMessage}}} {{#if score}}{{score}}{{/if}}</div>
19
- </div>
20
</div>
21
22
0 commit comments