there might be a better/more efficient way of doing the following. it was 
just poco

var words = []; 
for (i = 0; i < data.length; i++) { 
words.push({ 
lemma: data[i].lemma, 
ipa: data[i].ipa, 
s_lemma: data[i].lemma.replace(/ˈ/g, ''), 
s_ipa: data[i].ipa.replace(/ˈ/g, '') 
}) 
}

On Tuesday, April 19, 2016 at 2:49:15 PM UTC-7, Andrei Zhitkov wrote:
>
> I see what you are doing there. I hope this is the most efficient way to 
> handle this problem. I'll try it. Thank you.
>
> On Tuesday, April 19, 2016 at 4:38:43 PM UTC-5, Tito wrote:
>>
>> like this
>>
>> http://embed.plnkr.co/BCMhn3ja4UUAyuxtdxpd/
>>
>> hidden td
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to