Reduced preview lines from 15 to 10.

This commit is contained in:
Martin Edenhofer 2012-10-02 08:25:47 +02:00
parent ca18cf7bdd
commit 84dfdc2b63

View file

@ -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
@ -433,7 +433,7 @@ class Article extends App.Controller
notify + '<div class="hide">' notify + '<div class="hide">'
if @article_changed if @article_changed
@article['html'] = @article['html'] + '</div>' @article['html'] = @article['html'] + '</div>'
# hide signatures and so on # hide signatures and so on
else else
@article_changed = false @article_changed = false