* change hidden to hide.

This commit is contained in:
wyd621
2014-05-03 03:45:57 +00:00
parent dbfbaa0da4
commit a668a12c69
7 changed files with 15 additions and 15 deletions
+1 -1
View File
@@ -27,7 +27,7 @@
<th class='w-80px'><?php echo $lang->bug->resolution;?></th>
<td class='w-p35-f'><?php unset($lang->bug->resolutionList['tostory']); echo html::select('resolution', $lang->bug->resolutionList, '', 'class=form-control onchange=setDuplicate(this.value)');?></td><td></td>
</tr>
<tr id='duplicateBugBox' style='display:none'>
<tr id='duplicateBugBox' class='hide'>
<th><?php echo $lang->bug->duplicateBug;?></th>
<td><?php echo html::input('duplicateBug', '', "class='form-control'");?></td>
</tr>
+2 -2
View File
@@ -19,11 +19,11 @@
<td class='w-70px'><?php echo $lang->story->closedReason;?></td>
<td><?php echo html::select('closedReason', $lang->story->reasonList, '', 'onchange="setStory(this.value)"');?></td>
</tr>
<tr id='duplicateStoryBox' class='hidden'>
<tr id='duplicateStoryBox' class='hide'>
<td><?php echo $lang->story->duplicateStory;?></td>
<td><?php echo html::input('duplicateStory', '');?></td>
</tr>
<tr id='childStoriesBox' class='hidden'>
<tr id='childStoriesBox' class='hide'>
<td><?php echo $lang->story->childStories;?></td>
<td><?php echo html::input('childStories', '');?></td>
</tr>
+4 -4
View File
@@ -23,20 +23,20 @@
<td><?php echo $lang->story->reviewResult;?></td>
<td><?php echo html::select('result', $lang->story->reviewResultList, '', 'onchange="switchShow(this.value)"');?></td>
</tr>
<tr id='rejectedReasonBox' class='hidden'>
<tr id='rejectedReasonBox' class='hide'>
<td><?php echo $lang->story->rejectedReason;?></td>
<td><?php echo html::select('closedReason', $lang->story->reasonList, '', 'onchange="setStory(this.value)"');?></td>
</tr>
<tr id='duplicateStoryBox' class='hidden'>
<tr id='duplicateStoryBox' class='hide'>
<td><?php echo $lang->story->duplicateStory;?></td>
<td><?php echo html::input('duplicateStory', '');?></td>
</tr>
<tr id='childStoriesBox' class='hidden'>
<tr id='childStoriesBox' class='hide'>
<td><?php echo $lang->story->childStories;?></td>
<td><?php echo html::input('childStories', '');?></td>
</tr>
<?php if($story->status == 'changed' or ($story->status == 'draft' and $story->version > 1)):?>
<tr id='preVersionBox' class='hidden'>
<tr id='preVersionBox' class='hide'>
<td><?php echo $lang->story->preVersion;?></td>
<td><?php echo html::radio('preVersion', array_combine(range($story->version - 1, 1), range($story->version - 1, 1)), $story->version - 1);?></td>
</tr>
+4 -4
View File
@@ -33,20 +33,20 @@ var assignedTo = '<?php $story->lastEditedBy ? print($story->lastEditedBy) : pri
<th><?php echo $lang->story->reviewResult;?></th>
<td><?php echo html::select('result', $lang->story->reviewResultList, '', 'class=form-control onchange="switchShow(this.value)"');?></td><td></td>
</tr>
<tr id='rejectedReasonBox' class='hidden'>
<tr id='rejectedReasonBox' class='hide'>
<th><?php echo $lang->story->rejectedReason;?></th>
<td><?php echo html::select('closedReason', $lang->story->reasonList, '', 'class=form-control onchange="setStory(this.value)"');?></td><td></td>
</tr>
<tr id='duplicateStoryBox' class='hidden'>
<tr id='duplicateStoryBox' class='hide'>
<th><?php echo $lang->story->duplicateStory;?></th>
<td><?php echo html::input('duplicateStory', '', 'class=form-control');?></td><td></td>
</tr>
<tr id='childStoriesBox' class='hidden'>
<tr id='childStoriesBox' class='hide'>
<th><?php echo $lang->story->childStories;?></th>
<td><?php echo html::input('childStories', '', 'class=form-control');?></td><td></td>
</tr>
<?php if($story->status == 'changed' or ($story->status == 'draft' and $story->version > 1)):?>
<tr id='preVersionBox' class='hidden'>
<tr id='preVersionBox' class='hide'>
<th><?php echo $lang->story->preVersion;?></th>
<td colspan='2'><?php echo html::radio('preVersion', array_combine(range($story->version - 1, 1), range($story->version - 1, 1)), $story->version - 1);?></td>
</tr>
+1 -1
View File
@@ -28,7 +28,7 @@
<td class='w-p25-f'><?php echo html::select('product', $products, '', "class='form-control'");?></td><td></td>
</tr>
<?php else:?>
<tr class='hidden'>
<tr class='hide'>
<th class='w-90px'><?php echo $lang->testtask->product;?></th>
<td class='w-p25-f'><?php echo html::input('product', $productID, "class='form-control'");?></td><td></td>
</tr>
+2 -2
View File
@@ -36,11 +36,11 @@
<th><?php echo $lang->webapp->target?></th>
<td><?php echo html::select('target', $lang->webapp->targetList, '', "class='form-control'")?></td>
</tr>
<tr class="size hidden">
<tr class="size hide">
<th><?php echo $lang->webapp->size?></th>
<td><?php echo html::select('size', $lang->webapp->sizeList, '', "class='form-control'")?></td>
</tr>
<tr class="customSize hidden">
<tr class="customSize hide">
<th><?php echo $lang->webapp->custom?></th>
<td><?php echo html::input('customWidth', '', "class='w-40px'") . 'px X ' . html::input('customHeight', '', "class='w-40px'") . 'px';?></td>
</tr>
+1 -1
View File
@@ -53,7 +53,7 @@
<th><?php echo $lang->webapp->size?></th>
<td><?php echo html::select('size', $lang->webapp->sizeList, $webapp->size, "class='form-control'")?></td>
</tr>
<tr class="customSize <?php if($webapp->size != 'custom') echo 'hidden'?>">
<tr class="customSize <?php if($webapp->size != 'custom') echo 'hide'?>">
<th><?php echo $lang->webapp->custom?></th>
<td>
<div class='input-group'>