Commit e9423551d455411a7ffc83917e4ace451f19491f

Authored by Matheus Lins
1 parent abb95d1f

create topic_editation_presentation js

courses/static/js/topic_editation_presentation.js 0 → 100644
... ... @@ -0,0 +1,8 @@
  1 +$(".edit_card").on('click', function() {
  2 + $(".presentation").css('display','none');
  3 + $(".editation").css('display','block');
  4 +})
  5 +$(".edit_card_end").on('click', function() {
  6 + $(".editation").css('display','none');
  7 + $(".presentation").css('display','block');
  8 +})
0 9 \ No newline at end of file
... ...