Fetch word commentary
This commit is contained in:
parent
e0e10cf622
commit
820c510449
7 changed files with 34 additions and 9 deletions
|
@ -5,6 +5,7 @@ $(function() {
|
||||||
function(data) {
|
function(data) {
|
||||||
var primary_form = data['primary_form']
|
var primary_form = data['primary_form']
|
||||||
var part_of_speech = data['part_of_speech']
|
var part_of_speech = data['part_of_speech']
|
||||||
|
var commentary = data['commentary']
|
||||||
|
|
||||||
var translations = []
|
var translations = []
|
||||||
data['translations'].forEach(function(item) {
|
data['translations'].forEach(function(item) {
|
||||||
|
@ -25,6 +26,11 @@ $(function() {
|
||||||
$('#primary-form').text(primary_form)
|
$('#primary-form').text(primary_form)
|
||||||
$('#part-of-speech').text(part_of_speech)
|
$('#part-of-speech').text(part_of_speech)
|
||||||
|
|
||||||
|
if (commentary) {
|
||||||
|
$('#commentary-data').text(commentary)
|
||||||
|
$('#commentary').removeClass('invisible')
|
||||||
|
}
|
||||||
|
|
||||||
if (translations.length > 0) {
|
if (translations.length > 0) {
|
||||||
$('#translations-data').html('<ol>' + translations.join('') + '</ol>')
|
$('#translations-data').html('<ol>' + translations.join('') + '</ol>')
|
||||||
$('#translations').removeClass('invisible')
|
$('#translations').removeClass('invisible')
|
||||||
|
|
|
@ -16,8 +16,10 @@
|
||||||
<div id="translations-data"></div>
|
<div id="translations-data"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p>Используется с существительным в именительном падеже или с
|
<div id="commentary" class="invisible">
|
||||||
прилагательным.</p>
|
<h2>Комментарий</h2>
|
||||||
|
<p id="commentary-data"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Спряжение</h2>
|
<h2>Спряжение</h2>
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,11 @@
|
||||||
<div id="translations-data"></div>
|
<div id="translations-data"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="commentary" class="invisible">
|
||||||
|
<h2>Комментарий</h2>
|
||||||
|
<p id="commentary-data"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Спряжение</h2>
|
<h2>Спряжение</h2>
|
||||||
|
|
||||||
<table class="conjugation">
|
<table class="conjugation">
|
||||||
|
|
|
@ -16,13 +16,10 @@
|
||||||
<div id="translations-data"></div>
|
<div id="translations-data"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p>Глагол спрягается по объектному строю: меняется лицо и число
|
<div id="commentary" class="invisible">
|
||||||
грамматического объекта, являющегося реальным субъектом (тем, кто имеет), а
|
<h2>Комментарий</h2>
|
||||||
лицо грамматического субъекта, являющегося реальным объектом (тем, что
|
<p id="commentary-data"></p>
|
||||||
имеют), остаётся неизменным. Глагол спрягается только по этому строю, ибо
|
</div>
|
||||||
его нельзя употребить в 1 и 2 лицах субъекта и во множественном числе
|
|
||||||
субъекта, потому что грамматическим субъектом, то есть реальным объектом
|
|
||||||
(тем, что имеют), может быть только неодушевлённый предмет.</p>
|
|
||||||
|
|
||||||
<h2>Спряжение</h2>
|
<h2>Спряжение</h2>
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,11 @@
|
||||||
<div id="translations-data"></div>
|
<div id="translations-data"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="commentary" class="invisible">
|
||||||
|
<h2>Комментарий</h2>
|
||||||
|
<p id="commentary-data"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Спряжение</h2>
|
<h2>Спряжение</h2>
|
||||||
|
|
||||||
<table class="conjugation">
|
<table class="conjugation">
|
||||||
|
|
|
@ -16,6 +16,11 @@
|
||||||
<div id="translations-data"></div>
|
<div id="translations-data"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="commentary" class="invisible">
|
||||||
|
<h2>Комментарий</h2>
|
||||||
|
<p id="commentary-data"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Спряжение</h2>
|
<h2>Спряжение</h2>
|
||||||
|
|
||||||
<table class="conjugation">
|
<table class="conjugation">
|
||||||
|
|
|
@ -16,6 +16,11 @@
|
||||||
<div id="translations-data"></div>
|
<div id="translations-data"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="commentary" class="invisible">
|
||||||
|
<h2>Комментарий</h2>
|
||||||
|
<p id="commentary-data"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
<h2>Спряжение</h2>
|
<h2>Спряжение</h2>
|
||||||
|
|
||||||
<table class="conjugation">
|
<table class="conjugation">
|
||||||
|
|
Loading…
Reference in a new issue