Skip to content

Commit 19e5e75

Browse files
committed
Merge pull request #22 from adaptlearning/issue/#21
Issue/#21
2 parents 416d059 + fdce5c8 commit 19e5e75

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

js/adapt-contrib-tutor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ define(function(require) {
2929
this.$el.html(template(data)).appendTo('#wrapper');
3030
_.defer(_.bind(function() {
3131
this.showTutor();
32-
this.$('.tutor').css({opacity: 0});
32+
this.$('.tutor').css({display: 'block', opacity: 0});
3333
}, this));
3434
return this;
3535
},

less/tutor.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
color: @inverted-foreground-color;
99
z-index: 550;
1010
opacity:0;
11+
display:none;
1112
.ie8 & {
1213
left:0px;
1314
}

templates/tutor.hbs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
{{/if}}
1717
<div class="tutor-body">
1818
<div class="tutor-body-inner">{{{feedbackMessage}}} {{#if score}}{{score}}{{/if}}</div>
19-
</div>
2019
</div>
2120
</div>
2221
</div>

0 commit comments

Comments
 (0)