Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
Merge pull request #833 from iMoe037/fix/auto-scroll
Browse files Browse the repository at this point in the history
Changed the name attribute to fix auto-scrolling
  • Loading branch information
naveed-ahmad authored Jun 25, 2017
2 parents 040b464 + 97a0002 commit d062d2f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/Line/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Line extends Component {
// NOTE: Some 'word's are glyphs (jeem). Not words and should not be clicked for audio
let wordAudioPosition = -1;

const text = line.map((word) => ( // eslint-disable-line
const text = line.map(word => // eslint-disable-line
<Word
word={word}
key={`${word.position}-${word.code}-${word.lineNum}`}
Expand All @@ -45,7 +45,7 @@ class Line extends Component {
}
useTextFont={useTextFont}
/>
));
);

return (
<span className={`${styles.line} text-center`}>
Expand All @@ -59,14 +59,15 @@ class Line extends Component {

debug(
'component:Line',
`Page: ${line[0].pageNum} - Line: ${line[0].lineNum} - Ayah: ${line[0].verseKey}`
`Page: ${line[0].pageNum} - Line: ${line[0].lineNum} - Ayah: ${line[0]
.verseKey}`
);

return (
<div className={`row ${styles.font} text-justify text-arabic`}>
<div
className="col-md-12 line-container"
name={`ayah:${line[0].verseKey}`}
name={`verse:${line[0].verseKey}`}
>
{this.renderText()}
</div>
Expand Down

0 comments on commit d062d2f

Please sign in to comment.