_Left_2.cshtml 486 B

12345678910111213141516171819202122
  1. @using WeApp.Helpers
  2. @model WeApp.TrainingCamp.Dto.CampDto
  3. <div class="area" >
  4. @Html.Partial("/Views/Play/__/_EnvInfo.cshtml", Model)
  5. </div>
  6. @using (Html.BeginScripts())
  7. {
  8. <script id="left2-script">
  9. function s(type) {
  10. if (type) {
  11. $('#left2_2').fadeOut();
  12. $('#left2_1').fadeIn();
  13. } else {
  14. $('#left2_1').fadeOut();
  15. $('#left2_2').fadeIn();
  16. }
  17. }
  18. </script>
  19. }