Reduced preview lines from 15 to 10.
This commit is contained in:
parent
ca18cf7bdd
commit
84dfdc2b63
1 changed files with 4 additions and 4 deletions
|
@ -408,11 +408,11 @@ class Article extends App.Controller
|
||||||
# build html body
|
# build html body
|
||||||
# cleanup body
|
# cleanup body
|
||||||
@article['html'] = @article.body.trim()
|
@article['html'] = @article.body.trim()
|
||||||
@article['html'].replace(/\n\r/g, "\n")
|
@article['html'].replace( /\n\r/g, "\n" )
|
||||||
@article['html'].replace(/\n\n\n/g, "\n\n")
|
@article['html'].replace( /\n\n\n/g, "\n\n" )
|
||||||
|
|
||||||
# if body has more then x lines / else search for signature
|
# if body has more then x lines / else search for signature
|
||||||
preview = 15
|
preview = 10
|
||||||
preview_mode = false
|
preview_mode = false
|
||||||
article_lines = @article['html'].split(/\n/)
|
article_lines = @article['html'].split(/\n/)
|
||||||
if article_lines.length > preview
|
if article_lines.length > preview
|
||||||
|
|
Loading…
Reference in a new issue