12345678910111213141516171819202122 |
- @using WeApp.Helpers
- @model WeApp.TrainingCamp.Dto.CampDto
- <div class="area" >
- @Html.Partial("/Views/Play/__/_EnvInfo.cshtml", Model)
- </div>
- @using (Html.BeginScripts())
- {
- <script id="left2-script">
- function s(type) {
- if (type) {
- $('#left2_2').fadeOut();
- $('#left2_1').fadeIn();
- } else {
- $('#left2_1').fadeOut();
- $('#left2_2').fadeIn();
- }
- }
- </script>
- }
|