Commit 379323311d15b3af3d3448a137ec09d80775b8b0
1 parent
4f3f0549
Exists in
master
and in
5 other branches
Fixing summernote topic edition show
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
courses/static/js/topic_editation_presentation.js
... | ... | @@ -6,7 +6,7 @@ $(document).ready(function(){ |
6 | 6 | function show_editation(id_topic){ |
7 | 7 | $(".presentation_"+ id_topic).hide(); |
8 | 8 | $(".editation_"+ id_topic).show(); |
9 | - $('#summernote').summernote({height: 300}); | |
9 | + $(".editation_"+ id_topic).find('#summernote').summernote({height: 300}); | |
10 | 10 | }; |
11 | 11 | |
12 | 12 | function show_presentation(id_topic){ | ... | ... |