Skip to content

Commit

Permalink
Update show.blade.php
Browse files Browse the repository at this point in the history
Fix a mistake
  • Loading branch information
zalsader committed Nov 27, 2015
1 parent 470c7e3 commit 3e8c9d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/views/questions/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<p>{{ $question->description }}</p>
</div>
<div class="col-md-6">
<div width="400" height="0" style="position: relative;">
<div width="400" height="400" style="position: relative;">
<img src="{{asset('images/questions/'.$question->image)}}" alt="">
<canvas id="measure" width="400" height="0"
<canvas id="measure" width="400" height="400"
style="position: absolute; left: 0; top: 0; z-index: 1;"></canvas>
</div>
</div>
Expand Down Expand Up @@ -154,4 +154,4 @@ class="{{empty($question->hint_image)? 'hidden': ''}}">
});
</script>
@stop
@stop

0 comments on commit 3e8c9d7

Please sign in to comment.