Skip to content

Commit

Permalink
correcting sonority
Browse files Browse the repository at this point in the history
  • Loading branch information
shinjinighosh committed May 26, 2020
1 parent 9483385 commit abef41e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion extract_phoneme_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from phonemes import phonemes

phonemelist = [
dict(name=ph.name, symbol=sym, **ph.ipa_desc, **ph.properties)#, **ph.features)
dict(name=ph.name, symbol=sym, **ph.ipa_desc, **ph.properties) # , **ph.features)
for sym, ph in phonemes.items()
]

Expand Down
2 changes: 1 addition & 1 deletion ipatope.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var $grid = $('.grid').isotope({
name: '.name',
symbol: '.symbol',
number: '.number parseInt',
sonority: '.sonority',
sonority: '.sonority parseFloat',
category: '[data-category]',
weight: function(itemElem) {
var weight = $(itemElem).find('.weight').text();
Expand Down
2 changes: 1 addition & 1 deletion phonemes

0 comments on commit abef41e

Please sign in to comment.