Skip to content

Commit

Permalink
Enabled TypeScript feature
Browse files Browse the repository at this point in the history
  • Loading branch information
ranga543 committed Oct 9, 2016
1 parent 1c3ea57 commit 85c27d5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions JsonUtils/Views/Home/Index.cshtml
Expand Up @@ -91,6 +91,12 @@
PHP
</label>
</div>
<div class="radio-inline">
<label>
@Html.RadioButton("Language", 7, Model.Language == 7)
TypeScript
</label>
</div>
</div>
</div>
<div class="row">
Expand Down Expand Up @@ -268,6 +274,10 @@
$('#PropertyAttribute').attr('disabled', 'disabled');
$("#div-properties").show();
break;
case 7: //TypeScript
$('#Pascal').attr('disabled', 'disabled');
$('#PropertyAttribute').attr('disabled', 'disabled');
break;
default:
}
Expand Down

0 comments on commit 85c27d5

Please sign in to comment.