Improved see more feature.

This commit is contained in:
Martin Edenhofer 2012-05-05 17:57:28 +02:00
parent 37c0b78349
commit 3abf19eb2d

View file

@ -73,7 +73,7 @@ class Index extends App.Controller
# cleanup body
article['html'] = article.body.trim()
article['html'].replace(/\n\r/g, "\n");
article['html'].replace(/\n\n/mg, "\n");
article['html'].replace(/\n\n\n/g, "\n\n");
# if body has more then x lines / else search for signature
preview = 15
@ -81,6 +81,9 @@ class Index extends App.Controller
article_lines = article['html'].split(/\n/)
if article_lines.length > preview
preview_mode = true
if article_lines[preview] is ''
article_lines.splice( preview-1, 0, "----SEEMORE----" )
else
article_lines.splice( preview, 0, "----SEEMORE----" )
article['html'] = article_lines.join("\n")
article['html'] = window.linkify( article['html'] )