View Single Post
Old 05-12-2010, 08:41 AM   #1091
Duglum
Enthusiast
Duglum has a complete set of Star Wars action figures.Duglum has a complete set of Star Wars action figures.Duglum has a complete set of Star Wars action figures.
 
Posts: 41
Karma: 282
Join Date: Jun 2009
Device: Sony PRS-505
I got it. Replace line 191-201 in dictionary.js with

Code:
// get position of colon
var colonIdx = res.indexOf(':');

// get line number
lineNo = Number(res.slice(0, colonIdx));

// remove line from string
res = res.slice(colonIdx + 1, res.length - 1);

// split remaining string at double space
var split = res.split("  ");

// put string into textfields
this.inputLine.setValue(split[0]);		// term
this.printLines(txtFormat(split[1]));	// definition
Learning my way into Javascript line for line...
Duglum is offline   Reply With Quote