[Notice] Announcing the End of Demo Server [Read me]

fix dropdown for vcs select
@077cd558b89ab4ba92ec4173dacb82c896e75f86
--- app/views/project/newProject.scala.html
+++ app/views/project/newProject.scala.html
... | ... | @@ -40,21 +40,20 @@ |
40 | 40 |
<li class="option"> |
41 | 41 |
<div class="option-label">코드관리시스템</div> |
42 | 42 |
<div class="option-desc"> |
43 |
- <div class="btn-group"> |
|
44 |
- <button data-toggle="dropdown" class="btn dropdown-toggle d-label bgwhite" id="vcs_msg"></button> |
|
43 |
+ <div class="btn-group" data-name="vcs"> |
|
44 |
+ <button data-toggle="dropdown" class="btn dropdown-toggle d-label bgwhite"></button> |
|
45 | 45 |
<button data-toggle="dropdown" class="btn dropdown-toggle bgwhite"><span class="caret"></span></button> |
46 |
- <ul class="dropdown-menu" id="vcs_dropdown"> |
|
46 |
+ <ul class="dropdown-menu"> |
|
47 | 47 |
@RepositoryService.vcsTypes.map{ v => |
48 |
- <li><a href="#!/@v._1" data-value="@v._1">@Messages(v._2)</a></li> |
|
48 |
+ <li data-value="@v._1" @if(v._1 == "GIT"){ data-selected="true" class="active" }><a href="javascript:void(0)">@Messages(v._2)</a></li> |
|
49 | 49 |
} |
50 |
- <!-- 여기가 일반 input이 아니라서 submit시에 자료를 넣어줘야 할듯...--> |
|
51 | 50 |
</ul> |
52 |
- <input type="hidden" name="vcs" id="vcs" value=""/>@** vcs_dropdown 첫 번째 값으로 채워지게 할 것 **@ |
|
53 | 51 |
</div> |
54 | 52 |
</div> |
55 | 53 |
</li> |
56 | 54 |
|
57 | 55 |
@** |
56 |
+ <!-- |
|
58 | 57 |
<li class="option"> |
59 | 58 |
<div class="option-label">이용약관 <a href="#agreement" data-toggle="modal"><i class="ico ico-que-mark"></i></a></div> |
60 | 59 |
<div id="agreement" class="modal hide fade"> |
... | ... | @@ -79,6 +78,7 @@ |
79 | 78 |
<input type="checkbox" class="stipulation checkbox checkbox-btn" autocomplete="off" id="stipulation" name="accept"><label for="stipulation" class="bg-checkbox label-agreement">본인은 약관에 대한 안내를 읽었으며 동의 합니다.</label> |
80 | 79 |
</div> |
81 | 80 |
</li> |
81 |
+ --> |
|
82 | 82 |
**@ |
83 | 83 |
</ul> |
84 | 84 |
<div class="actions"> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?